diff --git a/docker/create_admin_and_community.rb b/docker/create_admin_and_community.rb index cf0a3f8c8..13690ef07 100644 --- a/docker/create_admin_and_community.rb +++ b/docker/create_admin_and_community.rb @@ -7,6 +7,7 @@ password = ENV['COMMUNITY_ADMIN_PASSWORD'] || 'password' email = ENV['COMMUNITY_ADMIN_EMAIL'] || 'codadict@noreply.com' -User.create(username: username, password: password, email: email, is_global_admin: true, is_global_moderator: true, staff: true) +User.create(username: username, password: password, email: email, is_global_admin: true, is_global_moderator: true, + staff: true) # You'll need to manually set confirmation for this user # $ docker exec qpixel_uwsgi_1 rails runner "User.second.update(confirmed_at: DateTime.now)"