LoginSignup
3
3

More than 5 years have passed since last update.

UbuntuにSpreeをさくっとインストールしたい男たち

Last updated at Posted at 2015-11-02

Railsプロジェクト作成

$ cd ~
$ mkdir spree
$ cd spree
$ bundle init
$ vi Gemfile

$ bundle install --path vendor/bundle
$ rails new . -T -d mysql --skip-bundle  
$ vi Gemfile

gem追加

gem 'spree', github: 'spree/spree'
$ bundle install
$ bundle exec rails g spree:install --migrate=false --sample=false --seed=false
bundle exec rake railties:install:migrations
bundle exec rake db:migrate
bundle exec rake db:seed
bundle exec rake spree_sample:load
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3