Simple Todo-App, a demostration introducing Django web framework in Distributed Applications courses
Authors: buicongdanh
- Frontend, Backend: Django
- Database: MySQL
Basic tasks CRUD
- Install Django:
python -m pip install django
- Update pip (if required)
python.exe -m pip install --upgrade pip
-
Run the database script file Task.sql
-
Run migrate and make migration
python manage.py migrate
python manage.py makemigration
- Run the app
python manage.py runserver