This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
posthog
Watch
0
Star
0
Fork
0
You've already forked posthog
mirror of
https://github.com/PostHog/posthog.git
synced
2024-11-22 08:40:03 +01:00
Code
Issues
Releases
Activity
66780ceef7
posthog
/
bin
/
start
9 lines
92 B
Plaintext
Raw
Normal View
History
Unescape
Escape
scripts to run background, worker and frontend simultaneously
2020-04-07 12:34:01 +02:00
#!/bin/bash
set -e
./bin/start-worker &
./bin/start-backend &
./bin/start-frontend &
wait
Copy Permalink