Creating a new admin user for local testing

Please replace these values with your own

u = User.new
u.role = :root
u.email = 'alexandria@gfsc.studio'
u.password = 'foobar123'
u.password_confirmation = 'foobar123'
u.first_name = 'Alexandria'
u.last_name = 'Asternova'
u.save

You can also do it all in one line if you would like:

u = User.new role: :root, email: 'x@me.com', password: 'foo', password_confirmation: 'foo', first_name: 'screaming', last_name: 'constantly'

And of course remember to:

u.save