A simple E-Commerce shopping site
Home | Products |
---|---|
Login | Shopping cart |
Checkout | |
This project only supports Python3. Install the python package requirements using pip
.
pip install -r requirements.txt
Run the migrate command to create database tables.
python manage.py migrate
Use the createsuperuser
command to create a user who has superuser privileges.
python manage.py createsuperuser
Finally run the server using the runserver
command.
python manage.py runserver
Linter test using Flake8
flake8 .
Unit tests and Coverage report.
pytest
The html coverage report will be generated and saved in the htmlcov/
folder.