mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
1918675f93
* Default set debug=1 to bin/start * Export DEBUG Co-authored-by: Michael Matloka <dev@twixes.com>
13 lines
166 B
Bash
Executable File
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
|