-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprod.env
More file actions
41 lines (34 loc) · 1.24 KB
/
Copy pathprod.env
File metadata and controls
41 lines (34 loc) · 1.24 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
# Environment: local, production, demo
ENVIRONMENT=production
# AMT backend
BACKEND_CORS_ORIGINS="http://localhost,https://localhost,http://127.0.0.1,https://127.0.0.1"
SECRET_KEY=changethis
APP_DATABASE_SCHEME="postgresql"
APP_DATABASE_DRIVER="asyncpg"
APP_DATABASE_USER=amt
APP_DATABASE_DB=amt
APP_DATABASE_PASSWORD=changethis
# Postgres database
POSTGRES_SERVER=db
POSTGRES_PORT=5432
POSTGRES_DB=postgres
POSTGRES_USER=postgres
POSTGRES_PASSWORD=changethis
# Database viewer
PGADMIN_DEFAULT_PASSWORD=changethis
PGADMIN_DEFAULT_EMAIL=admin@admin.com
# Algoritmeregister
ALGORITMEREGISTER_URL=https://algoritmes.overheid.nl
ALGORITMEREGISTER_TOKEN_URL=https://s01.i8s.nl/realms/algreg/protocol/openid-connect/token
# OIDC / Keycloak: local dev IdP from compose (see BUILD.md); override for production
OIDC_CLIENT_ID=amt-local
OIDC_CLIENT_SECRET=devsecret
OIDC_DISCOVERY_URL=http://keycloak:8180/realms/tad/.well-known/openid-configuration
# Object storage: local dev MinIO from compose; override for production
OBJECT_STORE_URL=minio:9000
OBJECT_STORE_USER=amt
OBJECT_STORE_PASSWORD=changeme
OBJECT_STORE_BUCKET_NAME=amt
# Credentials the local MinIO container starts with (must match OBJECT_STORE_USER/PASSWORD)
MINIO_ROOT_USER=amt
MINIO_ROOT_PASSWORD=changeme