26 lines
584 B
Bash
26 lines
584 B
Bash
# Shared
|
|
APP_ENV=development
|
|
LOG_LEVEL=debug
|
|
|
|
# HTTP services
|
|
BACKEND_ADDR=:8080
|
|
WORKER_CONCURRENCY=5
|
|
CONSOLE_PROXY_ADDR=:8081
|
|
|
|
# Supabase/Postgres
|
|
DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable
|
|
SUPABASE_JWKS_URL=http://localhost:54321/auth/v1/.well-known/jwks.json
|
|
SUPABASE_ISSUER=http://localhost:54321/auth/v1
|
|
|
|
# Redis/asynq
|
|
REDIS_ADDR=localhost:6379
|
|
|
|
# Secrets
|
|
# 32-byte key, base64 encoded. Replace locally.
|
|
MASTER_KEY_BASE64=
|
|
|
|
# Frontend
|
|
VITE_API_BASE_URL=http://localhost:8080
|
|
VITE_SUPABASE_URL=http://localhost:54321
|
|
VITE_SUPABASE_ANON_KEY=
|