* feature(auth): replace clerk.com with custom auth * minor fixes * remove notification preferences * decrease live events interval fix(api): cookies.. # Conflicts: # .gitignore # apps/api/src/index.ts # apps/dashboard/src/app/providers.tsx # packages/trpc/src/trpc.ts
14 lines
404 B
Plaintext
14 lines
404 B
Plaintext
# STORAGE
|
|
REDIS_URL="redis://127.0.0.1:6379"
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/postgres?schema=public"
|
|
DATABASE_URL_DIRECT="$DATABASE_URL"
|
|
CLICKHOUSE_URL="http://localhost:8123/openpanel"
|
|
|
|
# REST
|
|
BATCH_SIZE="5000"
|
|
BATCH_INTERVAL="10000"
|
|
CONCURRENCY="10"
|
|
NEXT_PUBLIC_DASHBOARD_URL="http://localhost:3000"
|
|
NEXT_PUBLIC_API_URL="http://localhost:3333"
|
|
WORKER_PORT=9999
|
|
API_PORT=3333 |