7 lines
324 B
Bash
Executable File
7 lines
324 B
Bash
Executable File
#!/bin/sh
|
|
source /home/shimatta/kenkyusho/.venv/bin/activate
|
|
cd /home/shimatta/kenkyusho/shimatta_kenkyusho
|
|
python manage.py migrate --settings shimatta_kenkyusho.settings_production
|
|
python manage.py collectstatic --settings shimatta_kenkyusho.settings_production --noinput
|
|
gunicorn -w 4 shimatta_kenkyusho.wsgi:application
|