This monorepository includes Ditsmod applications seed.
All applications are located in apps/*
.
From start you need to do:
npm install
After that, copy apps/backend/.env-example
to apps/backend/.env
:
cp apps/backend/.env-example apps/backend/.env
And fill this file.
npm run start:dev
You can check the server operation using curl
:
curl -i localhost:3000/api/hello
Or 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