mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
8e6b4f56b5
* Closes #169 break down by cohort * Fix test * Prettier breakdown filters * Rerender each time it's opened * Fix tests * Add 'all users' option in breakdown * Make people work with cohorts * Precalculate cohorts * Return last_calculation * Show precalculation in the frontend * Closes #675 fix icon alignment * Frontend fixes, antd and more * Make sure unsetting breakdown doesn't break things * Semantic name for migration * Separate data migration + cohort key bugfix * Correctly filter people by event * Typing
6 lines
145 B
Bash
Executable File
6 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# start celery worker with heartbeat (-B)
|
|
celery -A posthog worker -B --scheduler redbeat.RedBeatScheduler --loglevel=debug
|