/todo_app

Django todo_app

Primary LanguagePython

📜 ToDo App

ToDo App helps you to manage your life easier. Create tasks, complete them and then delete! You don't need to keep in mind all of your tasks for the rest of the week.

Screenshots

Home page

Tasks page

Task creation page

Setup

  1. Clone project to your machine
$ git clone https://github.com/Munewxar/todo_app.git
  1. Create virtual environment and install dependencies
$ python -m venv /path/to/new/virtual/environment
$ pip install -r requirements.txt
  1. Migrate data
$ python manage.py makemigrations
$ python manage.py migrate
  1. Create super user
$ python manage.py createsuperuser
  1. Run server
$ python manage.py runserver
  1. Open web browser and go to http://localhost:8000/todo/

Technologies

Python - 3.11.2
Django - 4.2