Install Node dependencies:
npm install
Create the env files for dev, test and prod, refer env.example
.env.development.local
.env.test.local
.env.production.local
The boilerplate uses Postgres database.
and update the db credentials in the env file
Run the following command to generate Prisma Client:
npm run prisma:generate:dev
Run the following command to migrate Prisma Migrate
npm run prisma:migrate:dev
Launch your server with this command:
npm run dev