This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-25 15:15:37 +02:00
|
|
|
Doorkeeper::Application.create!(name: 'Web', superapp: true, redirect_uri: Doorkeeper.configuration.native_redirect_uri, scopes: 'read write follow')
|
2017-01-26 14:52:07 +01:00
|
|
|
|
2017-01-26 09:22:00 +01:00
|
|
|
if Rails.env.development?
|
2017-01-26 14:52:07 +01:00
|
|
|
domain = ENV['LOCAL_DOMAIN'] || Rails.configuration.x.local_domain
|
2017-06-08 15:22:01 +02:00
|
|
|
admin = Account.where(username: 'admin').first_or_initialize(username: 'admin')
|
|
|
|
admin.save(validate: false)
|
2019-03-14 05:28:30 +01:00
|
|
|
User.where(email: "admin@#{domain}").first_or_initialize(email: "admin@#{domain}", password: 'mastodonadmin', password_confirmation: 'mastodonadmin', confirmed_at: Time.now.utc, admin: true, account: admin, agreement: true, approved: true).save!
|
2017-01-26 09:22:00 +01:00
|
|
|
end
|