From 48ae54d507d2c068f84d453f32948a3b9b4661d2 Mon Sep 17 00:00:00 2001 From: Artur Beljajev Date: Mon, 15 May 2017 11:48:16 +0300 Subject: [PATCH] Improve rake:bootstrap task #515 --- lib/tasks/bootstrap.rake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/tasks/bootstrap.rake b/lib/tasks/bootstrap.rake index 8bfff5ffc..36202a6c7 100644 --- a/lib/tasks/bootstrap.rake +++ b/lib/tasks/bootstrap.rake @@ -1,10 +1,10 @@ desc 'Bootstraps production-like environment' task :bootstrap do AdminUser.create!( - username: 'demo', - email: 'demo@domain.tld', - password: 'demodemo', - password_confirmation: 'demodemo', + username: 'admin', + email: 'admin@domain.tld', + password: 'adminadmin', + password_confirmation: 'adminadmin', country_code: 'US', roles: ['admin'] )