1

As i know in rails there is limited support for eCommerce solution(few options):

  1. Spree
  2. Ror-e
  3. Substruct
  4. Piggybak

I didn't use any of this, but wanted to ask that anyone have experience between these solutions, pros&cons. I found similar question: https://stackoverflow.com/questions/9382268/clean-e-commerce-app-with-user-friendly-non-techie-proof-admin-interface but is relatively outdated. So my main question here does any of these solutions has support for multi-store(multi-domain) concept? So i need something like:

  1. shop1.myWebApp.com
  2. shop2.myWebApp.com
  3. shop3.myWebApp.com


From here: Does Spree shop support multiple vendors to buy from?, i see Spree does that but from answers from that question i can assume that spree-multistore is very outdated.

Edit: As i can see the most recent version of extension is 1.3?

So wanted to ask is everything ok then with my GemFile(is this proper way to install everything):

gem 'spree', github: 'spree/spree', branch: '2-0-stable'

gem 'spree_auth_devise', github: 'spree/spree_auth_devise', branch: '2-0-stable'

gem 'spree_multi_domain', git: 'git://github.com/spree/spree-multi-domain.git',
branch: '2-0-stable'
Community
  • 1
  • 1
Srle
  • 10,366
  • 8
  • 34
  • 63

1 Answers1

3

This is not natively supported by Spree, however, it is supported by a few Spree extensions. We use https://github.com/spree/spree-multi-domain for our sites to achieve this.

gmacdougall
  • 4,901
  • 1
  • 16
  • 21
  • These extension is not-compatible with rails 4.0.0 ? As i can see the latest stable version of these multi-domain extension is 1.1.x, so with these i can use spree version 1.1.0 or 1.1.4? If i go with spree version 1.1.4 i'm limited to rails version 3.2.9 or below? – Srle Nov 08 '13 at 11:40
  • The most recent version of that extension is compatible with Spree 2.0. Spree 2.1 uses Rails 4.0, and the extension would need to be upgraded if you wanted to use it with Spree 2.1 and Rails 4.0. – gmacdougall Nov 14 '13 at 02:22
  • Can you see edit of question about installation please. – Srle Nov 19 '13 at 09:45
  • That looks like a reasonable Gemfile. – gmacdougall Nov 19 '13 at 19:20
  • is there any demo/live sites that uses this spree-multi-domain extension ? – Axil May 30 '14 at 05:03