-
Notifications
You must be signed in to change notification settings - Fork 39
/
pm2.json
37 lines (37 loc) · 1.19 KB
/
pm2.json
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
{
"apps": [
{
"name": "genesis-test",
"script": "main.js",
"exec_interpreter" : "node",
"watch" : ["genesis.json"],
"log_date_format" : "YYYY-MM-DD HH:mm Z",
"env": {
"TOKEN": "<discord bot token>",
"RAVEN_URL": "<raven logging URL>",
"PREFIX": "++",
"DISCORD_CARBON_TOKEN": "Not used yet",
"DISCORD_BOTS_WEB_USER": "Not used yet",
"DISCORD_BOTS_WEB_TOKEN": "Not used yet",
"OWNER":"<owner id for checking permissions>",
"SHARDS": 1,
"LOCAL_SHARDS": 1,
"SHARD_OFFSET": 0,
"MYSQL_HOST":"localhost",
"MYSQL_PORT":3306,
"MYSQL_USER":"root",
"MYSQL_PASSWORD":"password",
"MYSQL_DB":"genesis",
"LOG_LEVEL": "ERROR",
"WORLDSTATE_TIMEOUT": 60000,
"INVITE_URL" : "https://github.com/wfcd/genesis",
"CONTROL_WEBHOOK_TOKEN": "webhook token for control channel goes here",
"CONTROL_WEBHOOK_ID": "webhook id for control channel goes here",
"NODE_ENV": "development",
"TWITCH_CLIENT_ID": "--REQUIRED--",
"TWITCH_USER_LOGIN": "warframe",
"TWITCH_POLL_INTERVAL_MS": 10000
}
}
]
}