-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.prod.example
More file actions
30 lines (25 loc) · 933 Bytes
/
.env.prod.example
File metadata and controls
30 lines (25 loc) · 933 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
30
# Image references for deployed stack
API_IMAGE=diogopro/taskmanagement-api:latest
AUTH_IMAGE=diogopro/taskmanagement-auth:latest
CLIENT_IMAGE=diogopro/taskmanagement-client:latest
# Public hostnames (set to your public domain or nip.io hosts)
APP_HOST=app.144.24.250.76.nip.io
API_HOST=api.144.24.250.76.nip.io
AUTH_HOST=auth.144.24.250.76.nip.io
# Public/internal URLs for deployed environment
APP_BASE_URL=https://${APP_HOST}
API_BASE_URL=https://${API_HOST}
AUTH_ISSUER=https://${AUTH_HOST}
AUTH_INTERNAL_BASE_URL=http://auth-service:8080/
OPENIDDICT_AUDIENCE=task_management_api_dev
CADDYFILE_PATH=./Caddyfile.prod
# PostgreSQL settings
POSTGRES_DB=taskmanagement
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
# Infrastructure secrets
OPENIDDICT_ENCRYPTION_KEY=REPLACE_WITH_STRONG_BASE64_KEY
SWAGGER_CLIENT_SECRET=REPLACE_WITH_STRONG_SECRET
# Demo data
DEMO_DATA_ENABLED=true
DEMO_PASSWORD=REPLACE_WITH_STRONG_PASSWORD