mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
0223d7ab86
* feat: Add Temporal to the dev and hobby stacks * disable elastic for hobby because of resources * checkpoint * update requirements * worker is up, but without the sandbox * ensure temporal does not depend on elastic * Feedbacked * pip-compile dev * mypy fixes * add a bit of colorful logging * add django temporal worker to the mix * checkpoint for dev-full docker * Working on docker-full, but checkpointing for now * add migration bits for full
12 lines
151 B
Bash
Executable File
12 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
|
|
|
|
export DEBUG=${DEBUG:-1}
|
|
|
|
python3 manage.py start_temporal_worker
|
|
|
|
wait
|