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

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