DON'T commit .env files into version control, add
.env
to.gitignore
..env
files are added here as an example.
Develop the Nest application
npm install
cp .env.example .env
npx prisma generate
npm run start:dev
Get started by running
docker build -t nest-api .
docker run -p 3000:3000 --env-file .env -d nest-api
docker-compose up
# or detached
docker-compose up -d