This monorepository includes Ditsmod applications starter.
All applications are located in apps/*.
From start you need to do:
npm installAfter that, copy apps/backend/.env-example to apps/backend/.env:
cp apps/backend/.env-example apps/backend/.envAnd fill this file.
npm run start:devYou can check the server operation using curl:
curl -i localhost:3000/api/helloOr simply by going to http://localhost:3000/api/hello in your browser.
By default, the application works with info log level. You can change it in the file apps/backend/src/app/app.module.ts.
npm run build
npm run start-prod