1
0
Fork 0
satnogs-db/docker/run-docker.sh

7 lines
181 B
Bash
Executable File

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