From d9c5abd4cb65d5afdbd218d219c086f125d53684 Mon Sep 17 00:00:00 2001 From: Kaustav Das Modak Date: Sat, 20 Jun 2015 17:01:21 +0530 Subject: [PATCH] Add config.js.example Signed-off-by: Kaustav Das Modak --- .gitignore | 3 +++ config.js.example | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 config.js.example diff --git a/.gitignore b/.gitignore index 123ae94..a471f66 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/config.js.example b/config.js.example new file mode 100644 index 0000000..398120a --- /dev/null +++ b/config.js.example @@ -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"] + + } +};