/dominos

A Django-powered application that helps people order pizza.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

dominos

A Django powered up application that helps people order pizza.

Prerequisites

Initialize the project

Create a superuser to login to the admin:

docker-compose run --rm web ./manage.py createsuperuser

Start the dev server for local development:

docker-compose up

Sample Data

In order to check apis with sample data, Run this (You still need to create a superuser to use admin panel):

docker-compose run --rm web ./manage.py loaddata sampledata.json

Tests

To run tests:

docker-compose run --rm web ./manage.py test