0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/bin/start-https
Tim Glaser be7a345a61
Https locally (#910)
* Fix temporary token issue

* only pass params once

* HTTPS locally
2020-06-04 10:14:54 +01:00

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