How can I create an admin for my app which is running on heroku with spree.
Here's what I am trying but doesn't seem to be working.
new_admin=Spree::User.create(:email=>"[email protected]",
:password =>"testtest", :password_confirmation =>"testtest")
I am going into heroku rails console
, and trying it.
Please help.
You can try using
heroku run
command.Spree has it's own rake command to create an admin user.
from terminal run below command
heroku run rake spree_auth:admin:create