fix: fix UI protocol setSupervisionUrl insomnia payload
[e-mobility-charging-stations-simulator.git] / src / assets / config-template.json
index a0c0526abbf1a0c5c9266310cd17579d0ea80cb0..641117eaa2bab27a1ad6b7b9c6d3a58ef0f3791c 100644 (file)
@@ -1,16 +1,29 @@
 {
-  "supervisionUrls": [
-    "ws://localhost:8010/OCPP16/5be7fb271014d90008992f06"
-  ],
-  "distributeStationsToTenantsEqually": true,
+  "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": "basic-auth",
+      "username": "admin",
+      "password": "admin"
+    }
   },
-  "chargingStationsPerWorker": 1,
-  "workerProcess": "workerSet",
-  "workerPoolMinSize": 4,
-  "workerPoolMaxSize": 16,
   "stationTemplateUrls": [
     {
       "file": "siemens.station-template.json",
@@ -32,8 +45,5 @@
       "file": "schneider.station-template.json",
       "numberOfStations": 1
     }
-  ],
-  "logStatisticsInterval": 0,
-  "logFile": "combined.log",
-  "logErrorFile": "error.log"
+  ]
 }