mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
13 lines
202 B
Plaintext
13 lines
202 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
|
||
|
|
||
|
export IS_BEHIND_PROXY=1
|
||
|
export LOCAL_HTTPS=1
|
||
|
./bin/start-worker &
|
||
|
./bin/start-backend &
|
||
|
./bin/start-frontend-https &
|
||
|
|
||
|
wait
|