X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=docker%2Fconfig.json;h=c207106a03271e955b4566ee3fa8279f8e4cf612;hb=9e9194c977f2100a92a4549e6562750499607706;hp=3487a1440e6c5d2e630a0be4a34269e6ec3627b3;hpb=4adfffae3487a6f677cda5a9eccc9b41cc34b406;p=e-mobility-charging-stations-simulator.git diff --git a/docker/config.json b/docker/config.json index 3487a144..c207106a 100644 --- a/docker/config.json +++ b/docker/config.json @@ -1,40 +1,52 @@ { - "supervisionURLs": [ - "ws://server:8010/OCPP16/5c866e81a2d9593de43efdb4" - ], - "statisticsDisplayInterval": 60, - "autoReconnectTimeout": 10, - "autoReconnectMaxRetries": 10, - "distributeStationToTenantEqually": true, - "useWorkerPool": false, - "workerPoolSize": 16, - "stationTemplateURLs": [ + "supervisionUrls": ["ws://server:8010/OCPP16/5c866e81a2d9593de43efdb4"], + "supervisionUrlDistribution": "round-robin", + "log": { + "file": "/dev/stdout", + "errorFile": "/dev/stderr", + "console": false, + "rotate": false + }, + "worker": { + "processType": "workerSet", + "elementsPerWorker": 1, + "poolMinSize": 4, + "poolMaxSize": 16 + }, + "uiServer": { + "enabled": true, + "type": "ws", + "authentication": { + "enabled": true, + "type": "protocol-basic-auth", + "username": "admin", + "password": "admin" + } + }, + "stationTemplateUrls": [ { - "file": "./src/assets/station-templates/siemens.mougins69.station-template.json", - "numberOfStation": 0 + "file": "siemens.station-template.json", + "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/keba.station-template.json", - "numberOfStation": 0 + "file": "keba.station-template.json", + "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/abb.station-template.json", - "numberOfStation": 0 + "file": "abb.station-template.json", + "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/evlink.station-template.json", - "numberOfStation": 0 + "file": "evlink.station-template.json", + "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/schneider.station-template.json", - "numberOfStation": 0 + "file": "schneider.station-template.json", + "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/virtual-simple-atg.station-template.json", - "numberOfStation": 10 + "file": "virtual-simple-atg.station-template.json", + "numberOfStations": 10 } - ], - "consoleLog": false, - "logFile": "/dev/stdout", - "errorFile": "/dev/stderr" + ] }