Reputation: 277
I am following the railscast (#353 OAuth with Doorkeeper pro) and am stuck in setting up doorkeeper. Please see below:
rails generate doorkeeper:migration
, followed by rake db:migrate
I see a couple of rows of 'create_table'
and 'add_index'
as expected.
Here's the problem:
In my folder 'initializers', there is no doorkeeper.rb
file. What did I miss?
Upvotes: 1
Views: 346
Reputation: 1800
Try this before you run doorkeeper:migration
rails generate doorkeeper:install
Upvotes: 4