mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
6 lines
236 B
Bash
Executable File
6 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
python manage.py wait_for_db
|
|
python manage.py migrate
|
|
exec gunicorn plane.wsgi -k gthread --workers 8 --bind 0.0.0.0:8000 --config gunicorn.config.py --max-requests 10000 --max-requests-jitter 1000 --access-logfile -
|