Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benruns/git-cacher
https://github.com/benruns/git-cacher
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/benruns/git-cacher
- Owner: BenRuns
- Created: 2015-03-06T17:56:18.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-24T00:37:15.000Z (almost 8 years ago)
- Last Synced: 2024-12-01T13:48:30.800Z (2 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# git-cacher
This caches requests to github's api so that I don't hit their request limit as fast.
runs on google app engine### Requirements
- Google App Engine for Python
- Ubuntu: [https://cloud.google.com/sdk/docs/#deb](https://cloud.google.com/sdk/docs/#deb)
- Mac: [https://cloud.google.com/sdk/docs/#mac](https://cloud.google.com/sdk/docs/#mac)### Setup
1. Register an Oauth application with github [here](https://github.com/settings/applications/new)
2. In the root directory create a secret.json file with the following
{
"github:{
"client_id": id_from_step_1,
"client_secret": secret_from_step_1
}
}
3. Run the app$ dev_appserver.py app.yaml
### Deploy
gcloud app deploy