0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:15:44 +01:00
posthog/.devcontainer/.env

26 lines
613 B
Bash
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Default to running in django DEBUG mode. For tests this should be set to 0
DEBUG=1
# Make psql default to local settings
PGHOST=db
PGUSER=posthog
PGPASSWORD=posthog
PGPORT=5432
PGDATABASE=posthog
# Django settings
## Update to postgres to use postgres for all event queries
PRIMARY_DB=clickhouse
DATABASE_URL=postgres://${PGUSER}:${PGPASSWORD}@${PGHOST}:${PGPORT}/${PGDATABASE}
KAFKA_ENABLED=true
KAFKA_HOSTS=kafka:9092
REDIS_URL=redis://redis:6379
# Clickhouse settings
CLICKHOUSE_HOST=clickhouse
CLICKHOUSE_DATABASE=posthog_test
CLICKHOUSE_VERIFY=False
# Setup redis config
REDIS_URL=redis://redis:6379/