https://github.com/ditsmod/rest-monorepo-starter
https://github.com/ditsmod/rest-monorepo-starter
angular ditsmod monorepo monorepository typescript
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ditsmod/rest-monorepo-starter
- Owner: ditsmod
- License: mit
- Created: 2021-12-17T22:33:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-09-08T16:39:49.000Z (7 months ago)
- Last Synced: 2025-09-08T18:04:05.531Z (7 months ago)
- Topics: angular, ditsmod, monorepo, monorepository, typescript
- Language: TypeScript
- Homepage:
- Size: 1.23 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
```