Basic TODO app in which different users can login and add their own TODO with APIS
Clone the repo in your local system
git clone https://github.com/prabs222/TODO-Using-Django.gitInstall virtualenv
py -m pip install --user virtualenvCreate a new Virtualenvironment
py -m venv envActivate the Virtualenvironment with
.\env\Scripts\activateChange directory to the folder
cd folder-where-you-cloned-the-repoApply all the migrations with
python3 manage.py migrateRun the developement server with
python3 manage.py runserverYou'll see output like this
Performing system checks...
System check identified no issues (0 silenced).
July 04, 2022 - 15:50:53
Django version 4.0, using settings 'mysite.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.Client: HTML , CSS , Javascript
Server: Django , Python
- CRUD operation on TODO