This is a simple, minimal Django app intended to help you understand the main aspects of working with Django.
Clone this repository e.g.
git clone git@github.com:deparkes/simple-django-app.git
Navigate to the 'cool_counters' Django project:
cd simple-django-app/cool_counters
Run migrations to update/create database
python manage.py migrate
Run the Django development server
python manage.py runserver
Navigate to to http://127.0.0.1:8000
To create the docker image, run:
docker build -t counter-app .
To run the docker image, run:
docker run -d -p 8000:8000 counter-app:latest