β‘ A lightweight full-stack Task Manager app built with ReactJS (frontend) and FastAPI (backend). Developed under a 40-minute time constraint for the AIVOA Python Developer role assignment.
- β Add new tasks
- π View task list
- β Delete tasks by index
- π Real-time frontend/backend sync via REST APIs
- βοΈ Clean, minimal codebase β beginner and recruiter friendly
| Layer | Technology |
|---|---|
| Frontend | ReactJS |
| Backend | FastAPI (Python) |
| API Comm. | REST (with CORS) |
| Storage | In-memory Python list (demo purpose) |
cd fastapi-backend
python -m venv venv
source venv/bin/activate # For Windows: venv\Scripts\activate
pip install fastapi uvicorn
uvicorn main:app --reload