Todo app

A Todo app in Django

Check the Website deployed Using Vercel.

Get the code

  • Step 1: Create Virtual Environment
cd ~/Dev
mkdir ~/Dev/todoapp -p
cd ~/Dev/todoapp
python3.9 -m pip install virtualenv
python3.9 -m virtualenv .
source bin/activate
  • Step 2: Install the Dependencies

Using pip

git clone https://github.com/Arvind-4/todoapp.git .
pip install -r requirements.txt -r requirements-dev.txt

Using poetry

git clone https://github.com/Arvind-4/todoapp.git .
poetry install
  • Step 3: Run the Migrations!
python manage.py makemigrations
python manage.py migrate
  • Step 4: Run the Code!
python manage.py runserver

Add These to your .env in Root of the Project

DATABASE_PORT=
DATABASE_HOST=
DATABASE_PASSWORD=
DATABASE_USER=
DATABASE_NAME=
DATABASE_CLUSTER=

DJANGO_SUPERUSER_PASSWORD=
DJANGO_SUPERUSER_USERNAME=
DJANGO_SUPERUSER_EMAIL=
DJANGO_DEBUG=
DJANGO_SECRET_KEY=

Top categories

Loading Svelte Themes