Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diogosouza/hb-oauth2-diy
Honeybadger's OAuth2 source code for Ruby and Rails project with Devise and oauth-plugin.
https://github.com/diogosouza/hb-oauth2-diy
devise oauth-plugin oauth2 rails ruby
Last synced: about 1 month ago
JSON representation
Honeybadger's OAuth2 source code for Ruby and Rails project with Devise and oauth-plugin.
- Host: GitHub
- URL: https://github.com/diogosouza/hb-oauth2-diy
- Owner: diogosouza
- Created: 2020-04-15T16:28:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-08T20:40:41.000Z (almost 2 years ago)
- Last Synced: 2023-03-24T00:30:25.170Z (almost 2 years ago)
- Topics: devise, oauth-plugin, oauth2, rails, ruby
- Language: Ruby
- Homepage:
- Size: 62.5 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hb-oauth2-diy
Honeybadger's OAuth2 source code for Ruby and Rails project with Devise and [oauth-plugin](https://github.com/pelle/oauth-plugin).
Make sure to have Ruby 2.7 (or greater) installed in your machine.
### The provider
First, `cd` the `hb-oauth2-provider` folder and run:
```
bundle install
```Then, start the server by running the `rails server` command.
Your provider app will be available at http://localhost:3000/.
### The consumer
In a different command line tab/window, `cd` the `hb-oauth2-consumer` folder and run:```
bundle install
```Then, run the client app by issuing the following command:
```
ruby app.rb
```You app will be available at http://localhost:4567/.