Conduit API
A TypeScript, Express, Prisma, and PostgreSQL implementation of the RealWorld Conduit backend.
Setup
- Copy
.env.exampleto.envand configure PostgreSQL and the JWT secret. - Install dependencies with
npm install. - Create the database with
npx prisma migrate dev --name init. - Start development mode with
npm run dev.
The API is served below /api. Run the integration test suite with npm test against a disposable test database.