Merge pull request #148 from adriandarian/patch-1

Added a slight clearer instruction
This commit is contained in:
Ionică Bizău (Johnny B.) 2019-04-19 11:26:29 +03:00 committed by GitHub
commit d06416c87f
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
```