Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 604 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 604 Bytes

Express.js Typescript Boilerplate

CI

A boilerplate project for building REST API.

  • Server: Express.js
  • Query Builder: Knex
  • Auth: passport-jwt
  • Validator: Zod

Install

Clone the repository and install the dependencies with

yarn install

Copy the env file and edit the variables accordingly

cp .env.example .env

Apply the migrations

yarn knex migrate:latest

Seed the database

yarn knex seed:run

Running

yarn dev