https://github.com/petems/puppethack-open-prs
http://puppethack-open-prs.herokuapp.com/
https://github.com/petems/puppethack-open-prs
Last synced: 4 months ago
JSON representation
http://puppethack-open-prs.herokuapp.com/
- Host: GitHub
- URL: https://github.com/petems/puppethack-open-prs
- Owner: petems
- License: gpl-2.0
- Created: 2015-12-14T23:21:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-03-16T05:37:54.000Z (over 2 years ago)
- Last Synced: 2025-02-02T20:49:09.310Z (5 months ago)
- Language: Ruby
- Homepage:
- Size: 64.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# puppet-hack-open-prs
A simple Sinatra APP to check open Pull Requests on PuppetLabs namespace.
It's heavily based on the [junkie](https://github.com/leomilrib/junkie) app. It's awesome, go check it out!
## Using it
You can use it by [accessing the herokuapp](http://puppethack-open-prs.herokuapp.com/).## Getting your own
You can run it on your machine or sever by follwing this steps:### Running locally
- `git clone `
- `bundle install`
- config your `~/.netrc` file to include your GitHub authentication token:
```
machine api.github.com
login janedoe
password hunter2
```
- `bundle exec ruby app.rb`### Running on a Heroku app
- `git clone `
- `bundle install`
- `git remote add heroku <>`
- `heroku config:set --app=puppethack-open-prs GITHUB_APP_ID=<>`
- `heroku config:set --app=puppethack-open-prs GITHUB_APP_SECRET=<>`
- `heroku config:set --app=puppethack-open-prs SESSION_SECRET=$(ruby -e "require 'securerandom'; puts SecureRandom.hex")`
- `git push heroku master`
- `heroku open`## Contributing
See the [contributing guide](CONTRIBUTING.md).