Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 748 Bytes

Understand-Our-Django-Application.md

File metadata and controls

31 lines (18 loc) · 748 Bytes

Introduction

Django is a versatile web framework that simplifies web application development. You can learn more about Django in the official documentation.

About Our Application

Our app is a basic to-do app built with Django, which stores tasks in a PostgreSQL database.

User Interface

UI

Getting Started

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.


Previous | Next