You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
586 B
Markdown
23 lines
586 B
Markdown
4 months ago
|
# Runcible Web
|
||
|
|
||
|
Is the home of the Runcible website and marketing materials
|
||
|
|
||
|
## Development
|
||
|
|
||
|
### Installing Development Dependencies
|
||
|
|
||
|
#### Tailwind
|
||
|
|
||
|
The project uses the [Tailwind CSS Standalone executable](https://tailwindcss.com/blog/standalone-cli). Copies of these binaries are stored using git lfs in `./vendor/tailwind-cli`.
|
||
|
|
||
|
Ensure the tailwind binary is installed in your system `PATH`. Update your `~/.bashrc` accordingly
|
||
|
|
||
|
```
|
||
|
cp ./vendor/tailwind-cli/tailwindcss-3-4-13-linux-x64 ${HOME}/usr/local/bin/tailwind
|
||
|
chmod +x ${HOME}/usr/local/bin/tailwind
|
||
|
tailwind version
|
||
|
```
|
||
|
|
||
|
|
||
|
|