mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
be7a345a61
* Fix temporary token issue * only pass params once * HTTPS locally
13 lines
202 B
Bash
Executable File
13 lines
202 B
Bash
Executable File
#!/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
|