mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 17:24:15 +01:00
11 lines
150 B
Bash
Executable File
11 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
|
|
|
|
./bin/start-worker &
|
|
./bin/start-backend &
|
|
./bin/start-frontend &
|
|
|
|
wait
|