mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
8 lines
153 B
Plaintext
8 lines
153 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
python manage.py migrate
|
||
|
python manage.py migrate_clickhouse
|
||
|
|
||
|
python manage.py runserver 0.0.0.0:8000 & ./bin/start-frontend 0.0.0.0
|