mirror of
https://github.com/FuzzyGrim/Yamtrack.git
synced 2026-03-03 02:27:01 +00:00
13 lines
205 B
Bash
13 lines
205 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
id
|
|
ls -aln
|
|
ls -aln static
|
|
|
|
python manage.py migrate --noinput
|
|
|
|
python manage.py collectstatic --noinput --ignore=*.scss
|
|
|
|
uwsgi --socket :8000 --master --enable-threads --module base.wsgi |