A minimal Express + Drizzle backend template for PrettiFlow projects.
- Express - Web framework
- Drizzle ORM - Database ORM
- Neon - Serverless Postgres
- Copy
.env.exampleto.env - Add your
DATABASE_URL - Run
npm install - Run
npm run db:pushto sync schema - Run
npm run devto start server
src/
index.js # Main server entry
lib/
db.js # Database connection
schema.js # Drizzle schema
routes/ # API routes (add as needed)