FastAPI backend for the Multitask productivity app.
- GET/POST/PUT/DELETE /api/todos
- GET/POST/PUT/DELETE /api/notes
- FastAPI
- PostgreSQL
- psycopg2
- Pydantic
- Clone the repo
- Create virtual environment:
python -m venv venv - Activate:
venv\Scripts\activate - Install:
pip install -r requirements.txt - Create
.envwith database credentials - Run:
uvicorn main:app --reload