https://github.com/ditsmod/monorepo
https://github.com/ditsmod/monorepo
angular ditsmod monorepo monorepository typescript
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ditsmod/monorepo
- Owner: ditsmod
- License: mit
- Created: 2021-12-17T22:33:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-07T20:19:00.000Z (6 months ago)
- Last Synced: 2025-03-28T23:11:19.847Z (4 months ago)
- Topics: angular, ditsmod, monorepo, monorepository, typescript
- Language: TypeScript
- Homepage:
- Size: 1.08 MB
- 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 starter.
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
```