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.
This commit is contained in:
Adrian Darian 2019-04-01 22:50:18 -07:00 committed by GitHub
parent 4c4ede4cad
commit 7b95bec236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -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
```