Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ditsmod/monorepo


https://github.com/ditsmod/monorepo

angular ditsmod monorepo monorepository typescript

Last synced: 25 days ago
JSON representation

Awesome Lists containing this project

README

        

## About the project

This monorepository includes [Ditsmod](https://ditsmod.github.io/en/) applications seed.

All applications are located in `apps/*`.

From start you need to do:

```bash
npm install
```

After that, copy `apps/backend/.env-example` to `apps/backend/.env`:

```bash
cp apps/backend/.env-example apps/backend/.env
```

And fill this file.

## Start the web server in develop mode

```bash
npm run start:dev
```

You can check the server operation using `curl`:

```bash
curl -i localhost:3000/api/hello
```

Or simply by going to [http://localhost:3000/api/hello](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

```bash
npm run build
npm run start-prod
```