45 lines
916 B
JSON
45 lines
916 B
JSON
{
|
|
"development": {
|
|
"server": {
|
|
"port": 9090,
|
|
"logLevel": "debug"
|
|
},
|
|
"auth": {
|
|
"enabled": true,
|
|
"keycloak": {
|
|
"url": "https://auth.tombutcher.work",
|
|
"realm": "master",
|
|
"clientId": "farmcontrol-dev"
|
|
},
|
|
"requiredRoles": []
|
|
},
|
|
"database": {
|
|
"mongo": {
|
|
"url": "mongodb://127.0.0.1:27017/farmcontrol"
|
|
},
|
|
"redis": { "host": "localhost", "port": 6379, "password": "" }
|
|
},
|
|
"otpExpiryMins": 0.5
|
|
},
|
|
"production": {
|
|
"server": {
|
|
"port": 8081,
|
|
"logLevel": "info"
|
|
},
|
|
"auth": {
|
|
"enabled": true,
|
|
"keycloak": {
|
|
"url": "https://auth.tombutcher.work",
|
|
"realm": "master",
|
|
"clientId": "farmcontrol-client"
|
|
},
|
|
"requiredRoles": []
|
|
},
|
|
"database": {
|
|
"mongo": {
|
|
"url": "mongodb://localhost:27017/farmcontrol"
|
|
}
|
|
}
|
|
}
|
|
}
|