0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 21:49:51 +01:00
posthog/bin/start-cyclotron
Oliver Browne 145cacf60a
feat: cyclotron fetch and janitor run migrations (#24559)
Co-authored-by: Brett Hoerner <brett@bretthoerner.com>
2024-08-23 21:56:36 +03:00

22 lines
450 B
Bash
Executable File

#!/bin/bash
set -ex
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
cd rust
cargo build
export RUST_LOG=${DEBUG:-debug}
SQLX_QUERY_LEVEL=${SQLX_QUERY_LEVEL:-warn}
export RUST_LOG=$RUST_LOG,sqlx::query=$SQLX_QUERY_LEVEL
export DATABASE_URL=${DATABASE_URL:-postgres://posthog:posthog@localhost:5432/posthog}
export ALLOW_INTERNAL_IPS=${ALLOW_INTERNAL_IPS:-true}
./target/debug/cyclotron-fetch &
./target/debug/cyclotron-janitor &
wait