feat: allow to provision number of stations by template
[e-mobility-charging-stations-simulator.git] / src / assets / config-template.json
1 {
2 "supervisionUrls": ["ws://localhost:8010/OCPP16/5be7fb271014d90008992f06"],
3 "supervisionUrlDistribution": "round-robin",
4 "log": {
5 "file": "logs/combined.log",
6 "errorFile": "logs/error.log",
7 "maxFiles": 7,
8 "statisticsInterval": 0
9 },
10 "worker": {
11 "processType": "workerSet"
12 },
13 "performanceStorage": {
14 "enabled": true,
15 "type": "none"
16 },
17 "uiServer": {
18 "enabled": false,
19 "type": "ws",
20 "authentication": {
21 "enabled": true,
22 "type": "protocol-basic-auth",
23 "username": "admin",
24 "password": "admin"
25 }
26 },
27 "stationTemplateUrls": [
28 {
29 "file": "siemens.station-template.json",
30 "numberOfStations": 1
31 },
32 {
33 "file": "keba.station-template.json",
34 "numberOfStations": 2,
35 "provisionedNumberOfStations": 2
36 },
37 {
38 "file": "abb.station-template.json",
39 "numberOfStations": 2
40 },
41 {
42 "file": "evlink.station-template.json",
43 "numberOfStations": 4
44 },
45 {
46 "file": "schneider.station-template.json",
47 "numberOfStations": 1
48 }
49 ]
50 }