A simple CRUD app with Flask + SQLite. Search, filter, status toggle, edit modal, and a JSON API.
pip install -r requirements.txt
python main.py| Method | Route | Description |
|---|---|---|
| GET | /api/items |
List all items |
| POST | /api/items |
Create item {"title":"...","description":"..."} |
| DELETE | /api/items/<id> |
Delete item |
SECRET_KEY— Flask secret keyPORT— Server port (default 8080)DATABASE_PATH— SQLite file path