src/dependencies/:
angularlib: SWOPT's shared Angular componentsdp-ui: Domain Proxy UI libraryfis: FIS library for TypeScriptsrc/app/ with feature modules under subfolders (e.g., dashboard/, menu/)../init-project (or init-project.ps1 on Windows) after cloning to install dependencies../clean-project (or clean-project.ps1) if you encounter dependency issues, especially with Angular libraries.ng serve to start the app at http://localhost:4200/.ng build to generate production assets in dist/.ng test (Karma).ng e2e (add a platform if not present).src/dependencies/angularlib/.src/dependencies/dp-ui/.src/config/ and src/assets/.ng generate ...).CommonModule, clean the angularlib/node_modules/@angular folder as described in the main README.src/app/.src/dependencies/.package.json and the init-project script.ng generate component my-featurepowershell
rm -r -force src/dependencies/angularlib/node_modules/@angular
./clean-project.ps1
## References
- Main app: src/app/
- Shared libraries: src/dependencies/angularlib/, src/dependencies/dp-ui/, src/dependencies/fis/
- Configuration: src/config/, src/assets/
- Build/test scripts: root directory and build/
For more, see the main README.md and library-specific README.md files in src/dependencies/.