f69313bf33
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
409 B
Bash
21 lines
409 B
Bash
# Server
|
|
PORT=3000
|
|
HOST=127.0.0.1
|
|
ORIGIN=http://localhost:3000
|
|
|
|
# Branding
|
|
APP_NAME=B4L Budget
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://budget_app:password@localhost:5432/buildfor_life_budget
|
|
|
|
# OIDC (optional — leave blank to disable)
|
|
OIDC_ISSUER_URL=
|
|
OIDC_CLIENT_ID=
|
|
OIDC_CLIENT_SECRET=
|
|
OIDC_REDIRECT_URI=http://localhost:3000/oidc/callback
|
|
|
|
# Document uploads
|
|
UPLOADS_DIR=./uploads
|
|
BODY_SIZE_LIMIT=26214400
|