Project

General

Profile

Support #708

Updated by Daniel Curtis over 8 years ago

This is a guide on installing Spree on FreeBSD 9. 

 h2. Prepare the Environment 

 * Make sure the system is up to date: 
 <pre> 
 sudo pkg update && sudo pkg upgrade 
 </pre> 

 * Install a few dependencies: 
 <pre> 
 sudo pkg install ruby rubygem-rails git ImageMagick-nox11 
 </pre> 

 h2. Install Spree 

 * Switch to the home directory: 
 <pre> 
 cd ~ 
 </pre> 

 * Install the spree gem: 
 <pre> 
 gem install spree 
 </pre> 

 * Install the spree_auth_devise gem: 
 <pre> 
 gem install spree_auth_devise 
 </pre> 

 * Create a new rails application: 
 <pre> 
 rails new example_site 
 </pre> 

 * Install the spree auth gem in the new rails app: 
 <pre> 
 cd example_site 
 bundle exec tails g spree:auth:install 
 </pre> 

 * Install spree into the new rails app: 
 <pre> 
 spree install . 
 </pre> 

 * Run the test server to check that it was installed correctly: 
 <pre> 
 rails s 
 </pre> 

 h2. Resources 

 * https://github.com/spree/spree

Back