A full-stack REST API project built with FastAPI (backend) and HTML/CSS/JS (frontend).
βββ backend/
β βββ app.py
β βββ requirements.txt
β βββ Procfile
βββ frontend/
β βββ index.html
β βββ style.css
β βββ script.js
βββ README.md
- Backend: Python, FastAPI
- Frontend: HTML, CSS, JavaScript
- Database: PostgreSQL / Supabase
- Tools: Postman, Git
cd backend
pip install -r requirements.txt
uvicorn app:app --reloadOpen frontend/index.html in your browser.
| Method | Endpoint | Description |
|---|---|---|
| GET | / |
Health check |
| GET | /items |
Get all items |
| POST | /items |
Create new item |