https://github.com/quang-pham-dev/rfm-ng-2024
The Angular monorepo using nx
https://github.com/quang-pham-dev/rfm-ng-2024
angular angular18 best-architecture best-practices monorepo
Last synced: 2 months ago
JSON representation
The Angular monorepo using nx
- Host: GitHub
- URL: https://github.com/quang-pham-dev/rfm-ng-2024
- Owner: quang-pham-dev
- Created: 2024-08-07T02:41:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T06:53:03.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T12:11:38.875Z (over 1 year ago)
- Topics: angular, angular18, best-architecture, best-practices, monorepo
- Language: TypeScript
- Homepage: https://rfm-ng-2024.vercel.app
- Size: 640 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RFMNg2024
## Start the application
Run `pnpm nx serve rfm-ng-2024` to start the development server. Happy coding!
## Build for production
Run `pnpm nx build rfm-ng-2024` to build the application. The build artifacts are stored in the output directory (e.g. `dist/` or `build/`), ready to be deployed.
## Running tasks
To execute tasks with Nx use the following syntax:
```
pnpm nx <...options>
```
You can also run multiple targets:
```
pnpm nx run-many -t
```
..or add `-p` to filter specific projects
```
pnpm nx run-many -t -p
```
Targets can be defined in the `package.json` or `projects.json`.