-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.def.json
48 lines (48 loc) · 1.13 KB
/
settings.def.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
{
"ESIConfig": {
"EsiUrl": "https://esi.evetech.net/",
"DataSource": "Tranquility",
"ClientId": "**********",
"SecretKey": "**********",
"CallbackUrl": "http://localhost/evecallback",
"UserAgent": "LEVIATHAN"
},
"DiscordConfig": {
"ClientId": 0,
"ClientSecret": "**********",
"BotToken": "**********",
"CallbackUrl": "http://localhost/discordcallback",
"ServerGuildId": 0
},
"DatabaseConfig": {
"ConnectionString": "localSqlite.db"
},
"BotConfig": {
"Language": "en-US",
"WelcomeMessageEnabled": false,
"WelcomeMessage": "message",
"WelcomeMessageChannelId": 0,
"PingCommandPeoples": [],
"PingCommandMessage": "",
"EnforceCorporationTicker": true,
"EnforceAllianceTicker": false,
"EnforceCharacterName": true,
"RemoveRolesIfTokenIsInvalid": true,
"AuthGroups": [
{
"AllowedCorporations": [
"CORP_TICKER"
],
"AllowedCharacters": [
"Character Name"
],
"AllowedAlliances": [
"ALLY_TICKER"
],
"DiscordRoles": [
"Discord Role"
]
}
]
}
}