This repository has been archived by the owner on Nov 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathecosystem.template.json
61 lines (51 loc) · 1.97 KB
/
ecosystem.template.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
52
53
54
55
56
57
58
59
60
61
{
"apps": [
{
"name": "tf2-automatic",
"script": "dist/app.js",
"exec_mode": "fork",
"exp_backoff_restart_delay": 1000,
"shutdown_with_message": true,
"kill_timeout": 30000,
"out_file": "NULL",
"error_file": "NULL",
"env": {
"NODE_ENV": "production",
"STEAM_ACCOUNT_NAME": "",
"STEAM_PASSWORD": "",
"STEAM_SHARED_SECRET": "",
"STEAM_IDENTITY_SECRET": "",
"PRICESTF_API_TOKEN": "",
"BPTF_ACCESS_TOKEN": "",
"BPTF_API_KEY": "",
"BPTF_DETAILS_BUY": "I am buying your %name% for %price%, I have %current_stock% / %max_stock%.",
"BPTF_DETAILS_SELL": "I am selling my %name% for %price%, I am selling %amount_trade%.",
"OFFER_MESSAGE": "",
"ENABLE_DUPE_CHECK": true,
"DECLINE_DUPES": false,
"MINIMUM_KEYS_DUPE_CHECK": 10,
"ENABLE_MANUAL_REVIEW": true,
"AUTOBUMP": true,
"MINIMUM_SCRAP": 9,
"MINIMUM_RECLAIMED": 9,
"METAL_THRESHOLD": 9,
"DISABLE_INVENTORY_SORT": false,
"DISABLE_LISTINGS": false,
"DISABLE_MESSAGES": false,
"SKIP_BPTF_TRADEOFFERURL": false,
"SKIP_ACCOUNT_LIMITATIONS": false,
"SKIP_UPDATE_PROFILE_SETTINGS": false,
"ALLOW_BANNED": false,
"ALLOW_ESCROW": false,
"ALLOW_OVERPAY": true,
"MAX_PRICE_AGE": 28800,
"ADMINS": ["<your steamid 64>"],
"KEEP": ["<steamid of person to keep in friendslist>"],
"GROUPS": ["103582791462300957"],
"ALERTS": ["none"],
"DEBUG": false,
"DEBUG_FILE": true
}
}
]
}