Skip to content
Snippets Groups Projects
Commit 446d6f16 authored by Eugen's avatar Eugen Committed by GitHub
Browse files

Merge pull request #543 from ineffyble/tweak/seed-default-admin-account-on-dev-environments

Seed a default, confirmed, admin account on development environments
parents c3a3ce81 198ea252
No related branches found
No related tags found
No related merge requests found
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% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment