Skip to content

Commit

Permalink
bcgov#974 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nimya-aot committed Jan 29, 2024
1 parent 45a3eb0 commit 0aaf2ae
Showing 1 changed file with 43 additions and 42 deletions.
85 changes: 43 additions & 42 deletions app/config/custom-environment-variables.json
Original file line number Diff line number Diff line change
@@ -1,71 +1,72 @@
{
"db": {
"database": "chefs",
"host": "localhost",
"password": "admin",
"port": "5432",
"username": "app"
"database": "DB_DATABASE",
"host": "DB_HOST",
"password": "DB_PASSWORD",
"port": "DB_PORT",
"username": "DB_USERNAME"
},
"files": {
"uploads": {
"dir": "FILES_UPLOADS_DIR",
"enabled": "true",
"fileCount": "1",
"fileKey": "files",
"fileMaxSize": "25MB",
"fileMinSize": "0KB",
"path": "files"
"enabled": "FILES_UPLOADS_ENABLED",
"fileCount": "FILES_UPLOADS_FILECOUNT",
"fileKey": "FILES_UPLOADS_FILEKEY",
"fileMaxSize": "FILES_UPLOADS_FILEMAXSIZE",
"fileMinSize": "FILES_UPLOADS_FILEMINSIZE",
"path": "FILES_UPLOADS_PATH"
},
"permanent": "localStorage",
"permanent": "FILES_PERMANENT",
"localStorage": {
"path": "myfiles"
"path": "FILES_LOCALSTORAGE_PATH"
},
"objectStorage": {
"accessKeyId": "bcgov-citz-ccft",
"bucket": "chefs",
"endpoint": "https://commonservices.objectstore.gov.bc.ca",
"key": "chefs/dev/",
"secretAccessKey": "anything"
"accessKeyId": "FILES_OBJECTSTORAGE_ACCESSKEYID",
"bucket": "FILES_OBJECTSTORAGE_BUCKET",
"endpoint": "FILES_OBJECTSTORAGE_ENDPOINT",
"key": "FILES_OBJECTSTORAGE_KEY",
"secretAccessKey": "FILES_OBJECTSTORAGE_SECRETACCESSKEY"
}
},
"frontend": {
"adminDashboardUrl": "VITE_ADMIN_DASHBOARD_URL",
"apiPath": "api/v1",
"basePath" : "/app",
"apiPath": "FRONTEND_APIPATH",
"basePath": "VITE_FRONTEND_BASEPATH",
"keycloak": {
"clientId": "chefs-frontend",
"realm": "chefs",
"serverUrl": "http://localhost:8082"
"clientId": "FRONTEND_KC_CLIENTID",
"realm": "FRONTEND_KC_REALM",
"serverUrl": "FRONTEND_KC_SERVERURL"
}
},
"server": {
"apiPath": "/api/v1",
"basePath" : "/app",
"bodyLimit": "30mb",
"keycloak": {
"clientId": "chefs-frontend",
"realm": "chefs",
"serverUrl": "http://localhost:8082",
"clientSecret": "XXXXXXXXXXXX"
"apiPath": "SERVER_APIPATH",
"basePath": "SERVER_BASEPATH",
"bodyLimit": "SERVER_BODYLIMIT",
"keycloak": {
"clientId": "SERVER_KC_CLIENTID",
"clientSecret": "SERVER_KC_CLIENTSECRET",
"publicKey": "SERVER_KC_PUBLICKEY",
"realm": "SERVER_KC_REALM",
"serverUrl": "SERVER_KC_SERVERURL"
},
"logFile": "SERVER_LOGFILE",
"logLevel": "http",
"port": "8080"
"logLevel": "SERVER_LOGLEVEL",
"port": "SERVER_PORT"
},
"serviceClient": {
"commonServices": {
"ches": {
"endpoint": "https://ches-dev.api.gov.bc.ca/api",
"tokenEndpoint": "https://dev.loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token",
"clientId": "CHES_CLIENT_ID",
"clientSecret": "CHES_CLIENT_SECRET"
"endpoint": "SC_CS_CHES_ENDPOINT",
"tokenEndpoint": "SC_CS_CHES_TOKEN_ENDPOINT",
"clientId": "SC_CS_CHES_CLIENT_ID",
"clientSecret": "SC_CS_CHES_CLIENT_SECRET"
},
"cdogs": {
"endpoint": "https://cdogs-dev.api.gov.bc.ca/api",
"tokenEndpoint": "https://dev.loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token",
"clientId": "CDOGS_CLIENT_ID",
"clientSecret": "CDOGS_CLIENT_SECRET"
"endpoint": "SC_CS_CDOGS_ENDPOINT",
"tokenEndpoint": "SC_CS_CDOGS_TOKEN_ENDPOINT",
"clientId": "SC_CS_CDOGS_CLIENT_ID",
"clientSecret": "SC_CS_CDOGS_CLIENT_SECRET"
}
}
}
}
}

0 comments on commit 0aaf2ae

Please sign in to comment.