A proof of concept of applying Clean Architecture in Nest.js applications.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
GET /users
POST /users
{
"name": "Jane Doe",
"email": "jane@doe.com",
"password": "123456"
}