UI Server: Add support for cloud foundry deployment
[e-mobility-charging-stations-simulator.git] / src / assets / config-template.json
1 {
2 "supervisionUrls": ["ws://localhost:8010/OCPP16/5be7fb271014d90008992f06"],
3 "supervisionUrlDistribution": "round-robin",
4 "worker": {
5 "processType": "workerSet",
6 "elementsPerWorker": 1,
7 "poolMinSize": 4,
8 "poolMaxSize": 16
9 },
10 "performanceStorage": {
11 "enabled": true,
12 "type": "jsonfile"
13 },
14 "uiServer": {
15 "enabled": false,
16 "type": "ws",
17 "authentication": {
18 "enabled": true,
19 "type": "basic-auth",
20 "username": "admin",
21 "password": "admin"
22 }
23 },
24 "stationTemplateUrls": [
25 {
26 "file": "siemens.station-template.json",
27 "numberOfStations": 1
28 },
29 {
30 "file": "keba.station-template.json",
31 "numberOfStations": 2
32 },
33 {
34 "file": "abb.station-template.json",
35 "numberOfStations": 2
36 },
37 {
38 "file": "evlink.station-template.json",
39 "numberOfStations": 4
40 },
41 {
42 "file": "schneider.station-template.json",
43 "numberOfStations": 1
44 }
45 ],
46 "logStatisticsInterval": 0,
47 "logFile": "combined.log",
48 "logErrorFile": "error.log"
49 }