Search code examples
ruby-on-railsrubyformsspree

Product form for common users in Spree


I have a question about e-commerce offered by Spree in Ruby on Rails. I need to do an e-commerce where the users can create products to offer them to the public as well as that they can buy. Currently, Spree only allows you to add products to the administrator, but I also need common users can offer their products and also to link them with the user in the database.

There is a way to make a form that allows an common user to offer a product in Spree?, and if not, what other e-commerce would be easier to propose an e-commerce as I described. It is a project to do in a very short time and that is why I do it in RoR.


Solution

  • IMHO, I would build a marketplace and allow users to register as vendors, so that they can offer their products (either free or paid).

    You could look at the following gems to determine your needs:

    There is also non Rails options, like WooCommerce for Wordpress with a MarketPlace extension.

    I hope this helps.