-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (51 loc) · 1.61 KB
/
.env.example
File metadata and controls
55 lines (51 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Local development only.
# Do not copy these values into Vercel, Railway, Supabase, or GitHub.
# Use platform-native env stores for preview, staging, and production.
# Shared infrastructure
# If you run multiple local starter copies side by side, give each stack its own
# host ports here and keep the matching localhost URLs below in sync.
# If two local copies share the same folder name, set COMPOSE_PROJECT_NAME in
# your root .env to a unique value so Docker Compose namespaces the stack.
POSTGRES_PORT=5433
REDIS_PORT=6379
LOKI_PORT=3100
TEMPO_PORT=3200
OTEL_GRPC_PORT=4317
OTEL_HTTP_PORT=4318
OTEL_METRICS_PORT=8889
PROMETHEUS_PORT=9090
GRAFANA_PORT=3002
DATABASE_URL=postgres://postgres:postgres@localhost:5433/acme_platform
# Optional local override for Drizzle generation and migration commands.
# Leave blank to reuse DATABASE_URL.
DATABASE_MIGRATION_URL=
REDIS_URL=redis://localhost:6379
REDIS_PREFIX=acme-platform
FEATURE_FLAGS_JSON=
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
LOKI_URL=http://localhost:3100
# Web
NEXT_PUBLIC_APP_ENV=development
NEXT_PUBLIC_API_BASE_URL=http://localhost:3001
API_UPSTREAM_URL=http://localhost:3001
NEXT_PUBLIC_SENTRY_DSN=
BETTER_AUTH_SECRET=replace-with-a-32-character-secret
BETTER_AUTH_URL=http://localhost:3000
AUTH_FROM_EMAIL=Acme Platform <auth@acme-platform.local>
RESEND_API_KEY=
SMTP_HOST=
SMTP_PORT=
SMTP_SECURE=false
SMTP_USER=
SMTP_PASSWORD=
# API
PORT=3001
APP_ORIGIN=http://localhost:3000
API_CORS_ORIGIN=http://localhost:3000
API_SERVICE_NAME=acme-api
API_SENTRY_DSN=
API_LOG_LEVEL=info
API_LOG_TO_LOKI=false
# Grafana
GRAFANA_ADMIN_USER=admin
GRAFANA_ADMIN_PASSWORD=admin