summaryrefslogtreecommitdiff
path: root/db/fixtures/development/01_admin.rb
blob: 46b114dd07b5632d9c481ebb9fb37e11c4781474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require './spec/support/sidekiq_middleware'

Gitlab::Seeder.quiet do
  User.create!(
    name: 'Administrator',
    email: 'admin@example.com',
    username: 'root',
    password: '5iveL!fe',
    admin: true,
    confirmed_at: DateTime.now
  )

  print '.'
end