10 lines
180 B
Bash
10 lines
180 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
python manage.py collectstatic --soinput
|
|
|
|
uwsgi --socket :8000 --master --enable-threads --module extremum.wsgi #TCP
|
|
|
|
# Start Apache
|
|
exec apachectl -D FOREGROUND |