Skip to content

omar2205/cems-blog.backend

Repository files navigation

Description

A Nestjs backend for a blog. A task for cems-it.com.

Installation

$ pnpm install

Running the app

Note: copy .env.example and rename it to .env and update the variables.

To get a JWT secret generate a 32 char with this command:

$ openssl rand -base64 32
# development
$ pnpm run start

# watch mode
$ pnpm run start:dev

# production mode
$ pnpm run start:prod