Developing Spree
This guide covers all the necessary steps to contributing to Spree source code. We're happy you're here!
Spree API is written in Ruby on Rails framework and is mounted into a Rails application as a Rails Engine.
You don't need to be a Rails developer to work with Spree. You can install Spree via Spree Starter or Docker and not touch the underlying codebase at all and work only with the APIs.
All Spree models, controllers and other Ruby classes are namespaced by the
Spree
keyword, eg. Spree::Product
. This means that those files are also located in spree
sub-directories eg. app/models/spree/product.rb.Go to Spree GitHub repository and click the Fork button. This will create a copy of the Spree repository on your GitHub account. See Github Documentation for more information on forking.
- 1.Clone your fork repositorygit clone git://github.com/your_github_username/spree.gitcd spree
- 2.
- 3.Install required libraries/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && brew install openssl mysql postgresql imagemagick redis vips node
- 4.Install the gem dependenciesbundle install
Bellow command will setup a Rails application with Spree pre-installed with some data seeded:
bin/sandbox.sh
By default, Sandbox uses the PostgreSQL database. But you can switch to MySQL:
DB=mysql bin/sandbox.sh
SPREE_DASHBOARD_PATH=../../spree_backend bin/sandbox.sh
Start the server
cd sandbox
bin/dev
You may notice that your Spree store runs slower in development environment. This is caused by disabled caching and automatic reloading of code after each change.
Caching is disabled by default. To turn on caching please run:
bin/rails dev:cache
You will need to restart rails server after this change.
Create a new branch for your changes. Do not push changes to the main branch. Branch name should be human-readable and informative, eg.
- bug fixes:
fix/order-recalculation-total-bug
- features:
feature/my-new-amazing-feature
Each gem contains its own series of tests, and for each directory, you need to do a quick one-time creation of a test application and then you can use it to run the tests. For example, to run the tests for the core project.
cd core
bundle exec rake test_app
bundle exec rspec
If you would like to run specs against a particular database you may specify the dummy app's database, which defaults to sqlite3.
DB=postgres bundle exec rake test_app
If you want to run specs for only a single spec file
cd core
bundle exec rspec spec/models/spree/state_spec.rb
If you want to run a particular line of spec
cd core
bundle exec rspec spec/models/spree/state_spec.rb:7
If a large number of tests fail when you run rspec for the first time, confirm that you have Redis installed and running. You can use the command
brew services info redis
to check if Redis is running. If it is not running, start Redis with brew services start redis
.We use chromedriver to run integration tests. To install it please use this command:
brew cask install chromedriver
Please keep your commit history meaningful and clear. This guide covers it quite well and we recommend reading it, not only for Spree project but for any IT project overall.
- 1.Push your changes to a topic branch in your fork of the repository.git push -u origin fix/order-recalculation-total-bug
- 2.If your changes references Github issues, please mark which issue you're fixing by adding
Fixes #<number or url of the issue>
in the commit name or PR title/description. This will automatically mark that issue as closed when your PR will be merged. - 3.Wait for CI to pass
- 4.If CI passed wait for Spree Core team code reviewWe're aiming to review and leave feedback as soon as possible. We'll leave you a meaningul feedback if needed.
This section will help you troubleshoot common issues with Spree.
If you are using Spree 4.5 or higher, you may encounter the following libvips error:
LoadError: Could not open library 'vips.so.42'
This error is usually an indication that you do not have libvips installed locally on your machine. Check that libvips is installed with
vips -v
, and if it is not installed, follow installation instructions here.Thank you for participating in Open Source and improving Spree - you're awesome!
Last modified 6mo ago