simple server to serve as access for my SQLite Database
*Task Description:*
Create a simple server using Express.js or Flask to interact with a SQLite database. The server should allow basic CRUD (Create, Read, Update, Delete) operations on a single table. Use an ORM (Object-Relational Mapping) library to simplify database interactions. The table should have at least 3 columns (e.g., id, name, description). Provide API endpoints for creating, reading, updating, and deleting records.
*Example Use Case:*
- `POST /items`: Create a new item
- `GET /items`: Get all items
- `GET /items/:id`: Get an item by id
- `PUT /items/:id`: Update an item
- `DELETE /items/:id`: Delete an item
NOTE: NO NEGOTIATION - TODAY