Skip to content

Commit

Permalink
Add config.js.example
Browse files Browse the repository at this point in the history
Signed-off-by: Kaustav Das Modak <[email protected]>
  • Loading branch information
Kaustav Das Modak committed Jun 20, 2015
1 parent 20085bb commit d9c5abd
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ build/Release
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

# Ignore config.js
/config.js
22 changes: 22 additions & 0 deletions config.js.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {

// IRC config
irc: {

// IRC server
server: "chat.freenode.net",

// IRC port
port: "6697",

// Bot nickname registered on IRC
nick: "applaitbot",

// Bot account password on IRC
password: "",

// Channels to join
channels: ["#applait"]

}
};

0 comments on commit d9c5abd

Please sign in to comment.