Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/william1nguyen/django-ecomerce-website
mini e-commerce website using HTML, CSS, JS and basic Django
https://github.com/william1nguyen/django-ecomerce-website
django html-css-javascript
Last synced: about 1 month ago
JSON representation
mini e-commerce website using HTML, CSS, JS and basic Django
- Host: GitHub
- URL: https://github.com/william1nguyen/django-ecomerce-website
- Owner: william1nguyen
- Created: 2023-09-19T03:55:56.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-22T15:07:25.000Z (8 months ago)
- Last Synced: 2024-08-01T20:45:51.605Z (5 months ago)
- Topics: django, html-css-javascript
- Language: Python
- Homepage: https://ecom-nux1.onrender.com/
- Size: 1.38 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ecompera
![](demo/main_page.png)## Introduction
- A fullstack open-source ecommerce website.
## Architechture
- We use `Django` framework for the **Backend Server** and host `HTML, CSS, JS` for **Clients**.
## Install and Setup on local
### Install
> **Optional** Fork this project for customization development.
- Thanks to the publication of the repo, you can clone it.
```
$ git clone https://github.com/natalieconan/ecompera.git
```### Setup project on local
- Setup virtual environment (For this project, I use `pipenv`) and install required packages.
```
$ pipenv shell
$ pipenv install
```- Create file `.env` from `.env.example`.
```
$ cp .env.example .env
```> **Optional** Change `SECRET_KEY` inorder to enhance security.
- Create **SuperUser**.
```
$ python manage.py createsuperuser
```- Apply **Migration**.
```
$ python manage.py migrate
```- Finally, run this application.
```
$ python manage.py runserver
```