From c49d1a6d4fcc722191aaf85b83f856a4b071ba0c Mon Sep 17 00:00:00 2001 From: DerfOh Date: Tue, 9 Feb 2016 12:07:37 -0500 Subject: [PATCH] Added troubleshooting section Additional steps I had to take to get the bot working. --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index ca1961fed..ff8caac86 100644 --- a/README.md +++ b/README.md @@ -147,3 +147,21 @@ Then navigate to `http://127.0.0.1:5000/` in a browser. ## All done! Go play around and make the bot your own. +##Troubleshooting +If you get errors make sure you have the following dependencies installed in the bot's directory: +* Foreman +* Director +* cool-ascii-faces + +Run: `npm ls --depth=0` to check what packages you have in your bot's directory. + +If you're missing any use the following commands to install them: + +1. `npm install foreman` +2. `npm install director` +3. `npm install cool-ascii-faces` + +Sometimes you might need to use `nf start` instead of `foreman start`. + +If you plan on hosting the bot locally you will also need to open port 5000 on your router as well as changing the URL to `http://Your_IP_Address:5000` within your bot settings on groupme. +