https://github.com/probably-not/githubrepodownloader
Automatically download all of the repositories for a specific team under an organization.
https://github.com/probably-not/githubrepodownloader
downloader elixir github
Last synced: about 1 month ago
JSON representation
Automatically download all of the repositories for a specific team under an organization.
- Host: GitHub
- URL: https://github.com/probably-not/githubrepodownloader
- Owner: probably-not
- Created: 2018-07-16T12:55:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-11T07:22:34.000Z (over 7 years ago)
- Last Synced: 2025-01-07T06:32:14.516Z (over 1 year ago)
- Topics: downloader, elixir, github
- Language: Elixir
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github Repository Downloader
This project will download all of the repositories for a specific team under an organization.
## Setup
Create a ```config/prod.exs``` file with the necessary configuration variables.
To get an access token from GitHub, [click here](https://github.com/settings/tokens)
Example ```prod.exs``` file:
```
config :github_repo_downloader,
access_token: "1234567890",
organization: "MyOrganization"
```
You can also place this in the ```config/config.exs``` if you prefer.
## Run
To run the program, run the following command: ```mix start```.
If you've placed the configuration in ```config/prod.exs```, run ```MIX_ENV=prod mix start```.