Reputation: 21
I installed Spree 4.4 I can't find any frontend At localhost:3000 it says Yay You're on Rails The docs say to download the frontend api and open it in Postman I did that but I didn't see anything that looks like a storefront I can get to the admin panel alright Anyone can help?
Upvotes: 0
Views: 488
Reputation: 99
Spree 4.4 is a headless commerce. If you want to add storefront to your application using this SDK you can create your own or use one of the pre-built starters:
If you want to use spree legacy storefront, you can add this extension too in your gemfile and you are able to navigate storefront directly. [ Please note this extension is in maintenance mode, it might have some issues ]
Also, please make sure on which port you are running your application.
By default rails application runs on port 3000
.
So you can navigate spree:
Admin Panel: http://localhost:3000/admin
StoreFront: http://localhost:3000
Upvotes: 0