mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
16 lines
300 B
Bash
Executable File
16 lines
300 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
python manage.py migrate --check
|
|
|
|
gunicorn posthog.wsgi \
|
|
--config gunicorn.config.py \
|
|
--bind 0.0.0.0:8000 \
|
|
--log-file - \
|
|
--log-level info \
|
|
--access-logfile - \
|
|
--worker-tmp-dir /dev/shm \
|
|
--workers=2 \
|
|
--threads=4 \
|
|
--worker-class=gthread
|