Installation
Before you proceed we would like to remind you that we also offer Software as a Service platform called Vendo which is essentialy Spree in the cloud, with additional features, global CDN, pre-built integrations without hosting headaches.
.png)
Vendo - Spree as a Service offerring
With Vendo, you just need to sign up and focus on your brand and storefront experience. The rest (hosting, maintanence, security, scaling) is handled by us.
Before proceeding make sure you have Docker Desktop installed on your system. This is fairly straightforward but differs depending on which operating system you use.
If you would like to add Spree to your existing Ruby on Rails application, please follow this guide instead (for advanced users).
- 1.
- 2.Unzip it
- 3.Rename
spree_starter-main
directory as you please - 4.Run
bin/setup-docker
in said directory - 5.Wait for the commands to execute (it can take around 2-3 minutes)
- 6.Run
bin/start-docker
to run the webserver
You now have a functional Spree application after running only a few commands!
To stop the webserver, hit
Ctrl-C
in the terminal window where it's running. Your API server is up and running. Download our Open API doc and import it to Postman to start playing around. Your backend server URL is
http://localhost:4000
so to grab the Products List you can use:curl --request GET \
--url http://localhost:4000/api/v2/storefront/products \
--header 'Content-Type: application/json'
The next thing you'll probably want to do is to log into the admin interface. Use your browser window to navigate to http://localhost:4000/admin. You can log in with the username
[email protected]
and password spree123
.Upon successful authentication, you should see the admin screen:

Feel free to explore some of the Admin Panel features that Spree has to offer and to verify that your installation is working properly.
Last modified 4mo ago