mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
10 lines
125 B
Plaintext
10 lines
125 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
|
||
|
|
||
|
python3 manage.py start_temporal_worker
|
||
|
|
||
|
wait
|