mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
88ad205a3a
* separate plugin worker for heroku * plugin server for dev with less concurrency * add back plugins script * move beat log to beat * move starting the beat into the celery worker * add optional process types for plugins and celery * premium redis for heroku review apps * fix broken script * proc/dyno names are alphanumeric * singularize * premium-0 redis for all heroku apps, not just review apps * premium-0 redis also for review apps * remove heroku redis modifications * remove out of scope code * run beat in bg
6 lines
136 B
Bash
Executable File
6 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
rm celerybeat.pid || echo "celerybeat.pid not found, proceeding"
|
|
celery -A posthog beat -S redbeat.RedBeatScheduler
|