Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/detronetdip/e-commerce
A multivendor ecommerce website with admin panel, seller panel and deliveryboy panel
https://github.com/detronetdip/e-commerce
admin-dashboard admin-panel docker docker-compose docker-container dockerfiles ecommerce ecommerce-website javascript multivendor-ecommerce mysql panel php
Last synced: 9 days ago
JSON representation
A multivendor ecommerce website with admin panel, seller panel and deliveryboy panel
- Host: GitHub
- URL: https://github.com/detronetdip/e-commerce
- Owner: detronetdip
- License: mit
- Created: 2021-10-06T10:56:52.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-04T09:56:37.000Z (about 1 year ago)
- Last Synced: 2023-10-05T05:35:44.143Z (about 1 year ago)
- Topics: admin-dashboard, admin-panel, docker, docker-compose, docker-container, dockerfiles, ecommerce, ecommerce-website, javascript, multivendor-ecommerce, mysql, panel, php
- Language: PHP
- Homepage: https://detronetdip.github.io/E-commerce/
- Size: 1.84 MB
- Stars: 69
- Watchers: 5
- Forks: 33
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
E-commerce
A multi vendor e-commerce website with admin panel, seller panel and deliveryboy panel
Build with ❤️ and
### How to run
You can run this project by manually setting up everything or you can simply run it with docker or docker-compose to avoid overhead hustles
### Run with docker
To run this with docker please run the following commands.
***Please make sure that docker is installed in your system.***
```
> git clone https://github.com/detronetdip/E-commerce.git
> cd {to your cloned path}/E-commerce/
> docker build -t app -f Dockerfile .
> cd database
> docker build -t app_database -f Dockerfile .
> docker run \
--name database \
-e MYSQL_ROOT_PASSWORD='passwd' \
-p 9306:3306 app_database
> docker run --name web_app -p 3000:80 app
```
- Go to your browser and type `http://localhost:3000` and the whole project is ready to use.### Run with docker-compose
To run this with docker-compose please run the following commands.
***Please make sure that docker and docker-compose is installed in your system.***
```
> git clone https://github.com/detronetdip/E-commerce.git> cd {to your cloned path}/E-commerce/`
> docker-compose up -d --build
```
- Go to your browser and type `http://localhost:3000` and the whole project is ready to use.
- ***if you initialy encoutered connection refused error please wait for few seconds and relod the page.**