-
Notifications
You must be signed in to change notification settings - Fork 17
/
config.js.sample
26 lines (26 loc) · 1.06 KB
/
config.js.sample
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
// Please set the configuration below
module.exports = {
screeps: {
token: 'Your Screeps Auth token. Goto your screeps account > Auth Token to get one.',
method: 'memory.stats', // Valid Options: 'console' 'memory.stats'
// segment: 99, // Uncomment this line and specify segment id if you're placing stats into segment
shard: ['shard0'], // An array of shards to pull data from.
// username: 'username', // uncomment these for Private Servers
// password: 'password',
connect: {
// For Private servers, uncomment and edit the following:
// host: 'server1.screepspl.us:443',
// protocol: 'https'
}
},
// prefix: 'mmo', // uncomment this to prefix your data
service: {
url: 'https://screepspl.us',
token: 'apitoken' // Token supplied upon account creation
},
includeLeaderboard: true,
includeProfileData: true, // This pulls credits and power, note this also requires a full access token
checkForUpdates: true,
showRawStats: false, // This dumps stats to console on every push if enabled
sampleConfig: true // REMOVE THIS LINE BEFORE RUNNING
}