0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 21:49:51 +01:00
posthog/bin/temporal-django-worker
2023-05-15 17:05:31 +00:00

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