joeni

runserver.sh

1
#!/bin/sh
2
# This script automates the process during *DEVELOPMENT* of Joeni; it processes
3
# the SCSS files, and boots the server. Requires sassc to be installed.
4
sassc static/css/stylesheet.scss static/css/stylesheet.css
5
python manage.py runserver
6