Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maximeg/webhook-sample
Generic webhook consumer
https://github.com/maximeg/webhook-sample
Last synced: 6 days ago
JSON representation
Generic webhook consumer
- Host: GitHub
- URL: https://github.com/maximeg/webhook-sample
- Owner: maximeg
- Created: 2015-03-03T17:12:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-23T10:32:57.000Z (about 8 years ago)
- Last Synced: 2023-03-22T20:01:44.608Z (over 1 year ago)
- Language: Ruby
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ruby-sample
This is a barebones Ruby app using the [Sinatra](http://www.sinatrarb.com) framework.
## Running Locally
Asumming you have [Ruby](https://www.ruby-lang.org), [Bundler](http://bundler.io) and [Heroku Toolbelt](https://toolbelt.heroku.com) installed on your machine:
```sh
git clone [email protected]:heroku/ruby-sample.git # or clone your own fork
cd ruby-sample
bundle
foreman start
```Your app should now be running on [localhost:5000](http://localhost:5000/).
## Deploying to Heroku
```
heroku create
git push heroku master
heroku open
```## Documentation
For more information about using Ruby on Heroku, see these Dev Center articles:
- [Ruby on Heroku](https://devcenter.heroku.com/categories/ruby)
- [Getting Started with Ruby on Heroku](https://devcenter.heroku.com/articles/getting-started-with-ruby)
- [Getting Started with Rails 4.x on Heroku](https://devcenter.heroku.com/articles/getting-started-with-rails4)
- [Heroku Ruby Support](https://devcenter.heroku.com/articles/ruby-support)