From ef9e247a870563b2b03df5498d165acb443579b5 Mon Sep 17 00:00:00 2001 From: Sean Lindsay Date: Sat, 19 Aug 2017 11:07:59 +0000 Subject: [PATCH] Cleanup sample config file Fix an issue with the segment line not having a comma. Move the sampleConfig line to the top for better visibility and so the last line can have no comma. --- config.js.sample | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config.js.sample b/config.js.sample index 6346bb0..4df2d77 100644 --- a/config.js.sample +++ b/config.js.sample @@ -1,10 +1,12 @@ // Please set the configuration below module.exports = { + sampleConfig: true // REMOVE THIS LINE BEFORE RUNNING + screeps: { username: 'screepsUsernameHere', password: 'screepsPasswordHere', method: 'memory.stats', // Valid Options: 'console' 'memory.stats' -// segment: 99 // Uncomment this line and specify segment id if you're placing stats into segment +// segment: 99, // Uncomment this line and specify segment id if you're placing stats into segment shard: 'shard0' }, service: { @@ -12,6 +14,5 @@ module.exports = { token: 'apitoken' // Token supplied upon account creation }, checkForUpdates: true, - showRawStats: false, // This dumps stats to console on every push if enabled - sampleConfig: true // REMOVE THIS LINE BEFORE RUNNING + showRawStats: false // This dumps stats to console on every push if enabled }