-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (26 loc) · 942 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (26 loc) · 942 Bytes
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
# Database administration and least-privileged runtime access
POSTGRES_PORT=5432
DATABASE_ADMIN_URL=postgresql://organelle_admin:organelle_admin_local@127.0.0.1:5432/organelle
DATABASE_URL=postgresql://organelle_app:organelle_app_local@127.0.0.1:5432/organelle
DATABASE_APP_USER=organelle_app
DATABASE_APP_PASSWORD=organelle_app_local
# Generic OpenID Connect
APP_BASE_URL=http://localhost:3000
AUTH_SECRET=
APP_BIND_ADDRESS=127.0.0.1
OIDC_ISSUER=https://identity.example.com
OIDC_CLIENT_ID=organelle
OIDC_CLIENT_SECRET=
OIDC_PROVIDER_NAME="Company SSO"
# Optional comma-separated defense-in-depth filter. Directory membership is always required.
ALLOWED_EMAIL_DOMAINS=example.com
# Development only. Never honored by a production process.
AUTH_DEV_EMAIL=admin@example.com
# Organization and logging
ORG_NAME=Organelle
ORG_TIMEZONE=UTC
APP_LOG_FORMAT=json
APP_LOG_LEVEL=INFO
APP_LOG_SERVICE=organelle
APP_ENV=development
APP_VERSION=0.1.0