From 7b95bec2364d1cf4469aff7a4d4e2750aed31332 Mon Sep 17 00:00:00 2001 From: Adrian Darian Date: Mon, 1 Apr 2019 22:50:18 -0700 Subject: [PATCH] Added a slight clearer instruction When I was following your walkthrough in your README.md I got an error, even though it is not hard to fix some people might get confused. So I added this for a simple disclaimer. --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 454d627..0c82b23 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,20 @@ $ cd repository-downloader # Install the dependencies $ npm install +# Enter your username and password for GitHub and BitBucket into the config.json +$ vim config.json +repository-downloader/config.json +- { +- "github": { +- "username": "your GitHub username", +- "password": "your GitHub password" +- }, +- "bitbucket": { +- "username": "your BitBucket username", +- "password": "your BitBucket password" +- } +- } + # Start downloading and importing $ ./start ```