mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
10 lines
125 B
Bash
Executable File
10 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
|
|
|
|
python3 manage.py start_temporal_worker
|
|
|
|
wait
|