mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
7 lines
236 B
Plaintext
7 lines
236 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
python manage.py migrate
|
||
|
python manage.py rqworker &
|
||
|
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 -
|