Organizer and productivity tools mono-repository.
| Trigger | Badge | |
|---|---|---|
| :information_source: | Manual, Scheduled (weekly) | |
| :information_source: | Manual | |
| :information_source: | PR merge event (destination: trunk) | |
| :information_source: | Scheduled (weekly) | |
| :information_source: | PR open event (destination: trunk) |
In order to run own copy of the project one must fulfill the following requirements.
recommendedyarn install:all:linux should install everything needed to work with the project;should work due to the similarities with Linuxyarn install:all:osx should install everything needed to work with the project;should work, but no guaranteesshellcheck via PowerShell;Example :iwr -useb get.scoop.sh | iex
scoop install shellcheckGit BASH;git config --global core.autocrlf false
git config --global core.eol lffunctions folder.The project has lots of package scripts, check it in the package.json located in the project root, or use the following command (see terminal output for usage tips)
yarn workspace:helpUsing commitizen cli is mandatory.
Provided all dependencies are installed, and commitizen cli is installed as a global dependency, this command must be used.
Example :git czThe GitBook documentation is generated based on this GitHub repo.
Application deployments and autogenerated engineering documentation.
feature librarynpx nx generate client-feature client-<feature-name> --tags=scope:client-<feature-name>,type:featureui librarynpx nx generate client-ui client-ui-<feature-name> --tags=scope:client-ui-<feature-name>,type:uidata-access librarynpx nx generate client-store client-store-<feature-name> --tags=scope:client-store-<feature-name>,type:data-accessutil librarynpx nx generate client-util client-util-<feature-name> --tags=scope:client-util-<feature-name>,type:utilnpx nx generate module-boundariesThis project was generated using Nx.

🔎 Nx is a set of Angular CLI power-ups for modern development.
Nx supports many plugins which add capabilities for developing different types of applications and different tools.
These capabilities include generating applications, libraries, .etc as well as the devtools to test, and build projects as well.
Below are plugins which are added to the workspace:
| Application type | Command | Domain |
|---|---|---|
| Angular | nx add @nx/angular |
Web client |
| Nest | nx add @nx/nest |
API |
| Node | nx add @nx/node |
Automation |
| Storybook | nx add @nx/storybook |
UI testing |
| Cypress | nx add @nx/cypress |
E2E testing |
| Jest | nx add @nx/jest |
Unit testing |
To generate an application run:
Example :npx nx g @nx/angular:app my-appYou can use any of the plugins above to generate applications as well.
When using Nx, you can create multiple applications and libraries in the same workspace.
To generate a library run:
Example :npx nx g @nx/angular:lib my-libYou can also use any of the plugins above to generate libraries as well.
Libraries are sharable across libraries and applications.
It can be imported from @upgraded-enigma/mylib.
To start a dev server run:
Example :npx nx serve my-appNavigate to http://localhost:4200/.
The app will automatically reload if you change any of the source files.
To generate a new component run:
Example :npx nx g @nx/angular:component my-component --project=my-appTo build the project run:
Example :npx nx build my-appThe build artifacts will be stored in the dist/ directory.
Use the --prod flag for a production build.
To execute the unit tests run:
Example :npx nx test my-appTo execute the unit tests affected by a change run:
Example :npx nx affected:testTo execute the end-to-end tests run:
Example :npx nx e2e my-appTo execute the end-to-end tests affected by a change run:
Example :npx nx affected:e2eTo see a diagram of the dependencies of the projects run:
Example :npx nx dep-graphnpx nx g @nx/angular:storybook-configuration project-namenpx nx run tools:helpVisit the Nx Documentation to learn more.