.
├── src
│ ├── di # Container dependency injection definition
│ ├── domain # Entities, UseCases and repositories interfaces
│ ├── infrastructure # External access as Queue, Mail, Database repositories implementation
│ ├── webapi # Express web api
│ └── main.js # Entrypoint file
└── test # Test files
└── ...
NPM: npm run dev
or
Docker: docker-compose up -d
NPM: npm run test