-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathecosystem.config.js.example
72 lines (72 loc) · 1.8 KB
/
ecosystem.config.js.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module.exports = {
apps: [{
name: "LanManager_Web",
instances: 1,
max_restarts: 2,
env: {
"NODE_ENV": "development",
"application": "Web",
"PORT": "10028",
"IP": "localhost",
"saltRounds": "10",
"DB_PORT": "",
"WebPanelURL": "",
"WebSocketURL": "192.168.0.80:10027",
"WebTokenLength": "64",
"WebTokenDurationH": "48",
"DB_USER": "LanPartyTest",
"DB_HOST": "192.168.0.95",
"DB_NAME": "LanPartyManager",
"DB_PASSWORD": "",
"Company_Name": "",
"plug_power_graph": "60"
},
script: "./Web/index.js"
}, {
name: "LanManager_TGBot",
instances: 1,
max_restarts: 2,
env: {
"NODE_ENV": "development",
"application": "TGBot",
"Telegram_Bot_Botname": "",
"Telegram_Bot_Token": "",
"Fallback_Language": "de",
"WebPanelURL": "",
"DB_USER": "LanPartyTest",
"DB_HOST": "192.168.0.95",
"DB_NAME": "LanPartyManager",
"DB_PASSWORD": "",
"DB_PORT": "",
"Company_Name": "",
"Company_Name_Url": "",
},
script: "./Telegram/index.js"
}, {
name: "LanManager_PlugServer",
instances: 1,
max_restarts: 2,
env: {
"NODE_ENV": "development",
"application": "PlugServer",
"WebPanelURL": "",
"PORT": "10027",
"DB_USER": "LanPartyTest",
"DB_HOST": "192.168.0.95",
"DB_NAME": "LanPartyManager",
"DB_PASSWORD": "",
"DB_PORT": "",
"Influx_Enable": "false",
"Influx_Host": "",
"Influx_Protocol": "http",
"Influx_Port": "8086",
"Influx_Token": "",
"Infux_Bucket": "LANParty",
"Influx_Orga": "EBG",
"Company_Name": "",
"plug_power_cache": "60",
"write_to_pg_every": "120",
},
script: "./PlugsServer/index.js"
}]
}