This project is a boilerplate for a NestJS application using Drizzle ORM.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Node.js
- Yarn, Npm or Bun
- Clone the repository:
git clone https://github.com/egagofur/boilerplate-nest-drizzle.git
- Install dependencies:
bun install
- Create a
.env
file in the root of the project and add the following environment variables:
DATABASE_URL=postgres://user:password@localhost:5432/database
To start the application, run:
bun start
- NestJS - A progressive Node.js framework for building efficient, reliable and scalable server-side applications.
- Drizzle ORM - An ORM for Node.js focused on providing a simple, user-friendly interface for querying and manipulating data.