mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-04 03:01:23 +01:00
12 lines
441 B
Bash
Executable File
12 lines
441 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
export OBJECT_STORAGE_ENDPOINT=http://localhost:19000
|
|
export SESSION_RECORDING_V2_S3_ENDPOINT=http://localhost:19000
|
|
|
|
export CLICKHOUSE_API_USER="api"
|
|
export CLICKHOUSE_API_PASSWORD="apipass"
|
|
export CLICKHOUSE_APP_USER="app"
|
|
export CLICKHOUSE_APP_PASSWORD="apppass"
|
|
|
|
uvicorn --reload posthog.asgi:application --host 0.0.0.0 --log-level debug --reload-include "posthog/" --reload-include "ee/" --reload-include "products/" |