Run postgres DB (recommend to use a container) with the following:
- dbName: 'postgres',
- user: 'postgres',
- password: 'Abcd1234.',
To run the dev server for your app, use:
pnpm exec nx run my-workspace:serve
To create migrations:
npx mikro-orm migration:create
To update DB to latest migrations:
npx mikro-orm migration:up