-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (24 loc) · 738 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (24 loc) · 738 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
# Docker Compose
DOCKER_PLATFORM=linux/amd64
API_CONTEXT=. # path to inventory-api checkout
API_DOCKERFILE=Dockerfile
FRONTEND_PORT=80
API_PORT=5000
MONGO_PORT=27017
# Runtime environment (injected at container startup)
API_BASE_URL=http://localhost:5000
AUTH_AUTHORITY=https://sso.allue.eu/realms/master
AUTH_CLIENT_ID=inventory-front
AUTH_REDIRECT_URL=http://localhost:4200/auth-callback
AUTH_POST_LOGOUT_URI=http://localhost:4200
AUTH_SCOPE=openid profile email
SILENT_RENEW=true
USE_REFRESH_TOKEN=true
# API backend configuration
ASPNETCORE_URLS=http://+:5000
ASPNETCORE_ENVIRONMENT=Development
MONGO_CONNECTION_STRING=mongodb://mongodb:27017
MONGO_DATABASE=box_inventory
JWT_AUDIENCE=account
JWT_REQUIRE_HTTPS=false
CORS_ORIGIN=*