Django is a versatile web framework that simplifies web application development. You can learn more about Django in the official documentation.
Our app is a basic to-do app built with Django, which stores tasks in a PostgreSQL database.
To use our Django app, ensure you have Docker installed. You can confirm this by running:
docker version
If Docker is installed, run the following command:
docker run -dp 8000:8000 dipanshu13/django-todo:v1
Now, you can access the application at http://localhost:8000
.