Skip to content

zloydadka/synergy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Synergy

Решение для создания российских интернет-магазинов, основанное на Spree.

Установка

  1. Установите Rails 3.0.9

     gem install rails -v 3.0.9
    
  2. Создайте новое приложение

     rails new synergy_app -GJTq
    
  3. Настройте подключение к базе данных (рекомендуется MySQL с адаптером mysql2)

  4. Добавьте в Gemfile следующие строки:

     gem 'mysql2', '~> 0.2.7'
     gem 'spree', :git => 'git://github.com/spree/spree.git', :branch => '0-60-stable'
     gem 'spree_i18n', :git => 'git://github.com/spree/spree_i18n.git'
     gem 'synergy', '~> 0.60.0'
     gem 'synergy_default_theme', '~> 1.0.2'
    
  5. Выполните следующие команды:

     bundle install
     rails g spree:site -f
     rake spree:install
     rake synergy:install
     rake synergy_default_theme:install
     rake db:migrate
     rake db:seed db:sample
     rails s
    

Обновление

    bundle update
    rake synergy:install
    rake db:migrate
    rails s

Copyright (c) 2011 Roman Smirnov, released under the GNU GPL v3

About

Решение для создания российских интернет-магазинов, основанное на Spree.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%