-
Notifications
You must be signed in to change notification settings - Fork 3
/
auth.js.template
37 lines (33 loc) · 943 Bytes
/
auth.js.template
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
/**
* INSTRUCTIONS
* 1. Copy this file to `auth.js`.
* 2. Fill out the required fields.
* 3. Delete this comment.
*/
/**
* DO NOT COMMIT THIS FILE ANYWHERE PUBLIC because it contains sensitive data.
*
* The filename auth.js is added to the `.gitignore` file for this repo. Do
* not undo that.
*/
const auth = {
/**
* Your Discord Bot Secret Token.
* Available from https://discordapp.com/developers/applications/me
*/
botToken: '', // Name:
/**
* One Torn City API key, for general use.
* Find yours from https://www.torn.com/preferences.php#tab=api
*/
apiKey: '', // Name:
/**
* One API Key per faction, for faction-specific features. Find one volunteer
* from each of your subfactions so commands work for each faction. Use
* meaningful keynames for easy reference with commands. e.g. `chain faction1`
*/
factionKeys: {
faction1: '', // Name:
}
};
module.exports = auth;