create admin for spree for the app on heroku

414 Views Asked by At

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.

1

There are 1 best solutions below

1
On

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