BigW Consortium Gitlab

01_admin.rb 308 Bytes
Newer Older
1 2 3 4 5
Gitlab::Seeder.quiet do
  User.seed do |s|
    s.id = 1
    s.name = 'Administrator'
    s.email = 'admin@example.com'
6
    s.notification_email = 'admin@example.com'
7
    s.username = 'root'
8
    s.password = '5iveL!fe'
9 10 11 12
    s.admin = true
    s.projects_limit = 100
    s.confirmed_at = DateTime.now
  end
13
end