forked from WFCD/genesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpm2.json
51 lines (51 loc) · 1.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"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": "++",
"MD_LINE_END":"\n",
"MD_BLOCK_END": "\n```",
"MD_DOUBLE_RET": " \r\n \r\n",
"MD_BOLD": "**",
"MD_ITALIC": "*",
"MD_UNDERLINE":"__",
"MD_STRIKE":"~~",
"MD_CODE_SINGLE":"`",
"MD_CODE_BLOCK":"```haskell\n",
"MD_CODE_BLOCK_END":"\n```",
"MD_LINK_BEGIN":"",
"MD_LINK_MID":" : ",
"MD_LINK_END":"",
"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,
"TWITTER_TIMEOUT": 60000,
"TWITTER_KEY":"<twitter app access key>",
"TWITTER_SECRET":"<twitter app secret>",
"TWITTER_BEARER_TOKEN":"<twitter bearer token>",
"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"
}
}
]
}