0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/bin/start

11 lines
150 B
Plaintext
Raw Normal View History

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