0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/bin/docker-preview

11 lines
325 B
Plaintext
Raw Normal View History

2020-02-08 20:06:46 +01:00
#!/bin/bash
set -e
export PGDATA=/var/lib/postgresql/data
export DATABASE_URL=postgres://posthog:posthog@localhost:5432/posthog
/etc/init.d/postgresql start
python manage.py migrate
DEBUG=1 gunicorn posthog.wsgi --bind 0.0.0.0:8000 --log-file - -e DEBUG=1 -e DATABASE_URL=postgres://posthog:posthog@localhost:5432/posthog