Nexus example with:
$ docker-compose up
Create an .env
file at the project root
# .env
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/myapp"
# Init
$ npx prisma init
# Migrate
$ npx prisma migrate dev --preview-feature
Requires Remote - Containers
$ code .
# `Open in Remote Window` by pressing the button in the bottom left of VS Code
$ npm run dev