1
0
Fork 0
satnogs-db/bin/run-web.sh

8 lines
210 B
Bash
Executable File

#!/bin/bash
find ./staticfiles -mindepth 1 -not -name '.gitkeep'| xargs rm -rf
./manage.py collectstatic --noinput
./manage.py compress --force
./manage.py migrate --noinput
./manage.py runserver 0.0.0.0:8000