11 lines
182 B
Bash
11 lines
182 B
Bash
#!/bin/sh
|
|
|
|
|
|
# Apply database migrations
|
|
echo "Apply database migrations"
|
|
python manage.py migrate collectstatic --noinput
|
|
|
|
# Start server
|
|
echo "Starting server"
|
|
uwsgi --show-config
|
|
|