A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
$ pnpm install
# development
$ pnpm run start
# watch mode
$ pnpm run start:dev
# production mode
$ pnpm run start:prod
...
Tip: if you use Vercel deploy nestjs, you can't use
path alias
and only userelative path
.
To set environment variables in Vercel project settings:
- Log in to the Vercel platform and navigate to your project's dashboard.
- Open the
Settings
page and go to theEnvironment Variables
section. - Add an environment variable named
APP_ENV
and set its value toproduction
.
Nestjs-starter is MIT licensed.