mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
eaa169100a
* Add setting for handing off process_event_ee to plugin server * Add StatsD settings to KEYS * bin/plugin-server → start-plugin-server & docker-plugin-server * Simplify to only add docker-plugin-server * Bring back original comment * Turn down verbosity of plugin server install * Remove redundant if * Fix comment * Remove lone newline * Roll back unsafe script changes * Simplify dockerized plugins * Add some depends_on * Clarify HAND_OFF_INGESTION env var * Use posthog-plugin-server 1.0.0-alpha.1 * Enhance bin/plugin-server and rm bin/docker-plugin-server * Move around PLUGIN_SERVER_INGESTION_HANDOFF ifs * Use posthog-plugin-server@1.0.0-alpha.2 * Support kafka+ssl:// in plugin-server * Produce to topic events_ingestion_handoff for plugin server * Use posthog-plugin-server@1.0.0-alpha.3 * Don't import Kafka topics in FOSS * Use @posthog/plugin-server * Update yarn.lock * Add commands for external ClickHouse setup/teardown * Actually delete test CH teardown command * ClickhouseTestRunner.setup_test_environment() in setup_test_clickhouse * Rework test setup script to work with Postgres too * Restore master plugins dir for merge * Unset PLUGIN_SERVER_INGESTION_HANDOFF in docker-compose.ch.yml * Fix unimportant typo * Build log_event data dict only once * Make it clear in bin/plugin-server help that it's bin * Space space
6 lines
86 B
Bash
Executable File
6 lines
86 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
./bin/plugin-server &
|
|
./bin/docker-worker-celery --with-scheduler
|