- Python3.12
- Sqlite3
- Docker (for shorter way to setup)
- Step 0 - Make sure Docker is installed.
git clone https://github.com/prateekj117/ToDo-API.git
cd ToDo-API
docker build -t django-todo .
docker run -i -p 8000:8000 --name django-todo django-todo
Make sure you have the dependencies mentioned above installed before proceeding further.
- Step 0 - Clone the repository and
cd
into the directory.
git clone https://github.com/prateekj117/ToDo-API.git
cd ToDo-API
- Step 1 - Create virtualenv and Install Python Dependencies.
mkvirtualenv todo
pip install -r requirements.txt
- Step 2 - Run Migrations.
python manage.py migarte
- Step 3 - Make static files.
python manage.py collectstatic
- Step 4 - Run Server.
python manage.py runserver
- Run Unit Tests:
python manage.py test todo
python manage.py test authentication
- You can find the API docs at 0.0.0.0:8000/swagger
- Created a basic backend api with auth.
- Created basic user registration and authentication system.
- Also made a Dockerfile for the project for easy setup
- Also made a good amount of tests
- As further improvements:
- Can add priority to the tasks, as well as deadline time
- Also can add forget password flow, etc.