Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ditsmod/monorepo
https://github.com/ditsmod/monorepo
angular ditsmod monorepo monorepository typescript
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ditsmod/monorepo
- Owner: ditsmod
- License: mit
- Created: 2021-12-17T22:33:18.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-23T12:16:48.000Z (30 days ago)
- Last Synced: 2024-11-23T13:21:41.444Z (30 days ago)
- Topics: angular, ditsmod, monorepo, monorepository, typescript
- Language: TypeScript
- Homepage:
- Size: 866 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```