Build with Nodejs + TypeScript + Angular + React + MySQL and PostgreSQL
Website • Discord • Community • Twitter • Reddit • Documentation
Important
🎉 Spurtcommerce 5.0.0 is now available! Read more in the announcement post.
This is the official repository of Spurtcommerce. Using these Build , you can easily deploy Spurtcommerce Multi-Vendor Marketplace in your local server.
Navigate to the cloned repository directory “multivendor-marketplace” in the terminal and locate the "api" folder
Navigate to multivendor-marketplace/api folder and Install node_modules by executing the following command
$ npm install
It will take few mins for the npm installation to get finished and once done you will see the completion notification messages in terminal.
Retrieve the "spurtcommerce_marketplace.sql" file from the "/api" folder and import it into your MySQL server.
Configure the database settings in the ".env" file located in the "/api" folder, with the name and credentials for the application to connect to your database (imported from spurtcommerce_marketplace.sql)
Database Configuration we are using MySQL database, we need to configure database credentials in the .env file
#
# MySQL DATABASE
#
TYPEORM_CONNECTION=mysql
TYPEORM_HOST=localhost
TYPEORM_PORT=3306
TYPEORM_USERNAME= "testuser" #--Your MySql Username
TYPEORM_PASSWORD= "spurt123&" #--Your MySql Password
TYPEORM_DATABASE= "spurt_commerce" #--Your Database Name
TYPEORM_SYNCHRONIZE=false
TYPEORM_LOGGING=["query", "error"]
TYPEORM_LOGGER=advanced-console
In terminal, Navigate to multivendor-marketplace/api folder and Start API execution using the following command:
$ node dist/src/app.js
Navigate to "/var/www/html" (assuming Apache installation has created this directory) from your home directory in your local or server
-
Copy the "vendor" and "admin" folders as-is directly from "multivendor-marketplace/frontend/" to "/var/www/html/".
-
Copy all folders & files of “store” folder from multivendor-marketplace/frontend/ folder and paste it directly into /var/www/html/
Completion of above steps should successfully setup frontend builds of all 3 panels of Spurtcommerce Marketplace solution such as Store Panel, Vendor Panel and Admin Panel.
- marketplace website is ready to use from http://{your-domian or IP} (or) http://localhost/
- Vendor Panel can be accessed by http://{your-domian or IP}/vendor/#/auth/login
- Admin panel be accessed by http://{your-domian or IP}:{your-port}/admin/#/auth/login
Above steps concludes successful installation and setup of Spurtcommerce Marketplace solution build in your local (or) server.
Spurtcommerce 5.0.0 is published to npm under the @spurtcommerce/*
namespace.
You can find our extended documentation on our www.spurtcommerce.dev, but some quick links that might be helpful:
-
Read Technology to learn about our vision and what's in the box.
-
Our Discard Questions, Live Discussions Spurtcommerce Support.
-
An API Reference contains the details on Spurtcommerce foundational building blocks.
-
Some Video Video Tutorials
-
Every Release is documented on the Github Releases page.
🐞 If you spot a bug, please submit a detailed issue, and wait for assistance.
🤔 If you have a question or feature request, please start a new discussion.
🤔 This project is tested with BrowserStack
Spurtcommerce is developed and maintain by Piccosoft Software Labs India (P) Limited,.
Spurtcommerce is released under the BSD-3-Clause License..