Tom Butcher f9284ed1f2
Some checks failed
farmcontrol/farmcontrol-scheduler/pipeline/head There was a failure building this commit
Initial Commit
2026-09-06 23:06:27 +01:00

60 lines
1.0 KiB
JSON

{
"development": {
"server": {
"logLevel": "trace"
},
"database": {
"mongo": {
"url": "mongodb://127.0.0.1:27017/farmcontrol"
},
"redis": {
"host": "localhost",
"port": 6379,
"password": ""
},
"nats": {
"host": "localhost",
"port": 4222
}
}
},
"test": {
"server": {
"logLevel": "error"
},
"database": {
"mongo": {
"url": "mongodb://127.0.0.1:27017/farmcontrol-test"
},
"redis": {
"host": "localhost",
"port": 6379,
"password": ""
},
"nats": {
"host": "localhost",
"port": 4222
}
}
},
"production": {
"server": {
"logLevel": "info"
},
"database": {
"mongo": {
"url": "mongodb://192.168.68.38:27017/farmcontrol"
},
"redis": {
"host": "localhost",
"port": 6379,
"password": ""
},
"nats": {
"host": "localhost",
"port": 4222
}
}
}
}