7 lines
199 B
Bash
Executable File
7 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Generating CSS..."
|
|
./tailwindcss -i ./static/css/input.css -o ./static/css/output.css --content "./templates/*.html,./static/js/*.js" --minify
|
|
|
|
echo "Starting app..."
|
|
python app.py |