0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/bin/start
Tim Glaser 1918675f93
Default set debug=1 to bin/start (#3807)
* Default set debug=1 to bin/start

* Export DEBUG

Co-authored-by: Michael Matloka <dev@twixes.com>
2021-04-06 15:50:48 +02:00

13 lines
166 B
Bash
Executable File

#!/bin/bash
set -e
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
export DEBUG=1
./bin/start-worker &
./bin/start-backend &
./bin/start-frontend &
wait