This repository has been archived by the owner on Jun 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.example.json
60 lines (58 loc) · 1.6 KB
/
config.example.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
{
"server": {
"root": "https://zuraaa.com/",
"port": 80,
"session": {
"secret": "Insira a chave para criptografar a session aqui"
}
},
"database": {
"mongo": {
"url": "url do seu mongodb"
}
},
"oauth": {
"urls": {
"authorization": "https://discord.com/api/oauth2/authorize",
"token": "https://discord.com/api/oauth2/token",
"redirect": "http://localhost/oauth2/callback"
},
"client": {
"id": "id da aplicação do discord",
"secret": "secret da aplicação do discord"
}
},
"hcaptcha": {
"enabled": false,
"secret": "secret do hcaptcha",
"public": "chave pública do hcaptcha"
},
"discord": {
"bpdId": "guild da botlist",
"addId": "guild do servidor de teste de bot",
"bot": {
"token": "token bot",
"channels": {
"botLogs": "canal de log de eventos do site"
},
"roles": {
"admin": "admin role",
"mod": "mod role",
"developer": "developer role",
"verifier": "id do cargo de verificador"
}
},
"ownerId": "",
"endpoints": {
"userMe": "https://discord.com/api/users/@me"
},
"servers": {
"support": "https://discord.gg/t5qzWQB"
}
},
"api": {
"baseURL": "https://api.zuraaa.com",
"secret": "bolinho444",
"outerBase": "https://api.zuraaa.com"
}
}