Django Shopping Cart

Setup

Use make to show all available commands for testing and project configurations.

Documentation

Link

Installation

Create a virtualenv:

$ python3 -m venv venv

Install development requirements:

$ make dependencies

Create database tables:

$ make database

Create superuser:

$ make superuser

Run the project:

$ make run

Tests

To run the test suite, execute:

$ make test

To show coverage details (in HTML), use:

$ make test html