| title | description | tags | ||||
|---|---|---|---|---|---|---|
ExpressJS Prisma |
An ExpressJS server that uses Prisma to connect to a PostgreSQL database |
|
This is an ExpressJS REST API that uses Prisma to connect to a Postgres database and CRUD todos.
- Prisma
- Express
- Postgres
- TypeScript
- Install dependencies
yarn - Provision a Postgres container on Railway
- Connect to your Railway project with
railway link - Migrate the database
railway run yarn migrate:dev - Run the Server app
railway run yarn dev
This is a simple REST API for todo items. The available routes are
GET /todosgets all todosPOST /todoscreates a new usingtextin the JSON bodyGET /todos/:idgets a todo by idPUT /todos/:idupdates a todo by idDELETE /todos/:iddeletes a todo by id