https://github.com/kayprogrammer/ecommerce-store
An Ecommerce Application Built With Django MVT Architecture
https://github.com/kayprogrammer/ecommerce-store
django ecommerce ecommerce-application ecommerce-store jinja postgresql python3 vercel-deployment
Last synced: 8 months ago
JSON representation
An Ecommerce Application Built With Django MVT Architecture
- Host: GitHub
- URL: https://github.com/kayprogrammer/ecommerce-store
- Owner: kayprogrammer
- License: mit
- Created: 2024-04-30T17:05:35.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-28T19:31:24.000Z (over 1 year ago)
- Last Synced: 2025-03-24T09:51:01.443Z (11 months ago)
- Topics: django, ecommerce, ecommerce-application, ecommerce-store, jinja, postgresql, python3, vercel-deployment
- Language: Python
- Homepage: https://estore-django.vercel.app
- Size: 5.85 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ECOMMERCE STORE (DJANGO MVT)

#### Django Docs: [Documentation](https://docs.djangoproject.com/en/5.0/)
#### PG ADMIN: [pgadmin.org](https://www.pgadmin.org)
## How to run locally
* Download this repo or run:
```bash
$ git clone git@github.com:kayprogrammer/ecommerce-store.git
```
#### In the root directory:
- Install all dependencies
```bash
$ pip install -r requirements.txt
```
- Create an `.env` file and copy the contents from the `.env.example` to the file and set the respective values. A postgres database can be created with PG ADMIN or psql
- Run Locally
```bash
$ python manage.py migrate
```
```bash
$ python manage.py runserver
```
- Run With Docker
```bash
$ docker-compose up --build -d --remove-orphans
```
OR
```bash
$ make build
```
- Test Coverage
```bash
$ pytest --disable-warnings -vv
```
OR
```bash
$ make test
```
#### CLIENT
#### Live Url: [Ecommerce Platform](https://estore-django.vercel.app/)





#### ADMIN
