A simple full-stack todo application with registration in python using django.
Clone the repository.
git clone https://github.com/GeoCHiP/todoapp.git
cd todoapp/
Create and activate a python virtual environment.
python -m venv .venv
source .venv/bin/activate
Install the dependencies.
pip install -r requirements.txt
Create the database.
python manage.py migrate
Run the development server.
python manage.py runserver