Assignment 1 - ToDo App in Django
It's the assignment 1 from the Python 2 course, that requires a ToDoApp with authentication using Django
Installation
pip install Django
pip install migrate
Install pgAdmin Install for both desktop and web modes:
sudo apt install pgadmin4
Install for desktop mode only:
sudo apt install pgadmin4-desktop
Install for web mode only:
sudo apt install pgadmin4-web
Configure the webserver, if you installed pgadmin4-web:
sudo /usr/pgadmin4/bin/setup-web.sh
Usage
django-admin startproject myproject
python manage.py startapp todoappexample
python manage.py runserver
python manage.py makemigrations todos
python manage.py sqlmigrate todos
python manage.py migrate
python manage.py createsuperuser (asset, 123, [email protected])