X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fassets%2Fconfig-template.json;h=943e9c5b2c4998b556c614eb80714666e5afbf4c;hb=ada0c1ead79ff48eae54a5594c3bdf4553aa791b;hp=f5595f6172a89e0292569805518e0b4ec8f3efa6;hpb=007ee6420bb6702c41a277d0712f6e5ea8d6f8c4;p=e-mobility-charging-stations-simulator.git diff --git a/src/assets/config-template.json b/src/assets/config-template.json index f5595f61..943e9c5b 100644 --- a/src/assets/config-template.json +++ b/src/assets/config-template.json @@ -1,14 +1,29 @@ { "supervisionUrls": ["ws://localhost:8010/OCPP16/5be7fb271014d90008992f06"], "supervisionUrlDistribution": "round-robin", + "log": { + "file": "logs/combined.log", + "errorFile": "logs/error.log", + "maxFiles": 7, + "statisticsInterval": 0 + }, + "worker": { + "processType": "workerSet" + }, "performanceStorage": { "enabled": true, - "type": "jsonfile" + "type": "none" + }, + "uiServer": { + "enabled": false, + "type": "ws", + "authentication": { + "enabled": true, + "type": "protocol-basic-auth", + "username": "admin", + "password": "admin" + } }, - "chargingStationsPerWorker": 1, - "workerProcess": "workerSet", - "workerPoolMinSize": 4, - "workerPoolMaxSize": 16, "stationTemplateUrls": [ { "file": "siemens.station-template.json", @@ -16,7 +31,8 @@ }, { "file": "keba.station-template.json", - "numberOfStations": 2 + "numberOfStations": 2, + "provisionedNumberOfStations": 2 }, { "file": "abb.station-template.json", @@ -30,8 +46,5 @@ "file": "schneider.station-template.json", "numberOfStations": 1 } - ], - "logStatisticsInterval": 0, - "logFile": "combined.log", - "logErrorFile": "error.log" + ] }