Initial commit
This commit is contained in:
25
apps/api/.env.example
Normal file
25
apps/api/.env.example
Normal file
@@ -0,0 +1,25 @@
|
||||
# Application
|
||||
NODE_ENV=development
|
||||
PORT=3001
|
||||
HOST=0.0.0.0
|
||||
|
||||
# Database (see packages/db/.env.example)
|
||||
DATABASE_URL="postgresql://dwellops:dwellops@localhost:5432/dwellops_dev?schema=public"
|
||||
|
||||
# Auth
|
||||
BETTER_AUTH_SECRET="change-me-in-production-use-openssl-rand-base64-32"
|
||||
BETTER_AUTH_URL="http://localhost:3001"
|
||||
|
||||
# CORS
|
||||
CORS_ORIGIN="http://localhost:3000"
|
||||
|
||||
# Email / Mailpit (local dev)
|
||||
SMTP_HOST=localhost
|
||||
SMTP_PORT=1025
|
||||
SMTP_FROM="noreply@dwellops.local"
|
||||
|
||||
# OIDC (optional — set OIDC_ENABLED=true to activate)
|
||||
OIDC_ENABLED=false
|
||||
# OIDC_ISSUER=https://your-idp.example.com
|
||||
# OIDC_CLIENT_ID=your-client-id
|
||||
# OIDC_CLIENT_SECRET=your-client-secret
|
||||
Reference in New Issue
Block a user