16 lines
609 B
Bash
16 lines
609 B
Bash
# Backend configuration
|
|
ConnectionStrings__PostgreSQL=host=giecchallenge_db;User ID=${POSTGRES_USER};Password=${POSTGRES_PASSWORD};Port=14432;Database=GiecChallenge;Pooling=true
|
|
AllowedHosts=*
|
|
OriginAllowed=https://giecchallenge.maximeboulay.com
|
|
PasswordHash=${PasswordHash}
|
|
JWT__ValidAudience=https://giecchallenge-backend.maximeboulay.com
|
|
JWT__ValidIssuer=https://giecchallenge-backend.maximeboulay.com
|
|
JWT__Secret=${JWT__Secret}
|
|
POSTGRES_USER=
|
|
POSTGRES_PASSWORD=
|
|
|
|
# Frontend configuration
|
|
REACT_APP_API_URL=https://giecchallenge-backend.maximeboulay.com
|
|
|
|
# General environment
|
|
ASPNETCORE_ENVIRONMENT=Docker |