-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.example.js
62 lines (51 loc) · 951 Bytes
/
config.example.js
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
const config = {};
config.port = 3017;
config.server = "default";
config.generateDelay = 60;
config.errorThreshold = 10;
config.genSaveDelay = 5;
config.optimus = {
prime: 0,
inverse: 0,
random: 0
};
config.mongo = {
useTunnel: false,
tunnel: {
username: "mongo",
host: "1.2.3.4",
privateKey: require("fs").readFileSync("./id_rsa"),
port: 22,
dstPort: 27017
},
user: "admin",
pass: "admin",
address: "localhost",
port: 27017,
database: "mineskin"
};
config.crypto = {
algorithm:"aes-256-ctr",
key: "I'm a key!"
};
config.discordAccount = {
token: "",
channel: ""
};
config.discordApiKey = {
token: "",
channel: ""
};
config.puller = {
endpoint: "/_git_webhook",
secret: "",
vars: {
appName: "MineSkin"
},
logCommands: true
};
config.sentry ={
dsn: ""
};
config.metrics = {};
module.exports = config;