Skip to content

ditsmod/monorepo

Repository files navigation

About the project

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.

Start the web server in develop mode

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.

Start the web server in production mode

npm run build
npm run start-prod