Skip to content

Commit

Permalink
Seed a default, confirmed, admin account on development environments
Browse files Browse the repository at this point in the history
  • Loading branch information
ineffyble committed Jan 26, 2017
1 parent 905c829 commit 198ea25
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions db/seeds.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
web_app = Doorkeeper::Application.new(name: 'Web', superapp: true, redirect_uri: Doorkeeper.configuration.native_redirect_uri, scopes: 'read write follow')
web_app.save!
if Rails.env.development?
domain = ENV['LOCAL_DOMAIN'] || Rails.configuration.x.local_domain
account = Account.where(username: 'admin').first_or_initialize(username: 'admin').save!
user = User.where(email: "admin@#{domain}").first_or_initialize(:email => "admin@#{domain}", :password => 'mastodonadmin', :password_confirmation => 'mastodonadmin', :confirmed_at => Time.now, :admin => true, :account => Account.where(username: 'admin').first).save!
end

0 comments on commit 198ea25

Please sign in to comment.