https://github.com/ideacrew/enroll-fe2
Front End applications for Enroll App UI's
https://github.com/ideacrew/enroll-fe2
angular nx
Last synced: 5 months ago
JSON representation
Front End applications for Enroll App UI's
- Host: GitHub
- URL: https://github.com/ideacrew/enroll-fe2
- Owner: ideacrew
- Created: 2023-07-31T23:10:02.000Z (almost 3 years ago)
- Default Branch: trunk
- Last Pushed: 2026-01-12T22:16:25.000Z (5 months ago)
- Last Synced: 2026-01-13T00:46:06.422Z (5 months ago)
- Topics: angular, nx
- Language: TypeScript
- Homepage:
- Size: 2.98 MB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SBTC Calculator
✨ **This workspace has been generated by [Nx, a Smart, fast and extensible build system.](https://nx.dev)** ✨
## Start the app
To start the development server run `nx serve sbtc-calculator`. Open your browser and navigate to http://localhost:4200/. Happy coding!
## Generate code
If you happen to use Nx plugins, you can leverage code generators that might come with it.
Run `nx list` to get a list of available plugins and whether they have generators. Then run `nx list ` to see what generators are available.
Learn more about [Nx generators on the docs](https://nx.dev/plugin-features/use-code-generators).
## Making commits to the repo
Before each commit, git hooks will check that certain criteria is met before allowing the commit to proceed.
> If the criteria IS met, the commit will be allowed.
> If the criteria IS NOT met, the commit will be cancelled and errors will display to the developer what went wrong.
These are the criteria for each commit:
Looking in these folders for changes (src, app, libs, tools) for changes to only \*.{ts, tsx} files
- All changed files must pass [TSC type checking](https://www.typescriptlang.org/docs/handbook/2/basic-types.html#static-type-checking)
- All changed files must pass Jest unit tests
Looking in these folders for changes (src, app, libs, tools) for changes to only \*.{js, ts, jsx, tsx, json} files
- All changed files will be linted and if possible lint changes, if any, written to the changed files
- If lint changes are required and can not be written, the commit will fail and the error will be shown.
Looking in these folders for changes (src, app, libs, tools) for changes to only \*.{css, scss} files
- All changed files will be linted and if possible lint changes, if any, written to the changed files
- If lint changes are required and can not be written, the commit will fail and the error will be shown.
## Running tasks
To execute tasks with Nx use the following syntax:
```
nx <...options>
```
You can also run multiple targets:
```
nx run-many -t
```
..or add `-p` to filter specific projects
```
nx run-many -t -p
```
Targets can be defined in the `package.json` or `projects.json`. Learn more [in the docs](https://nx.dev/core-features/run-tasks).
## Want better Editor Integration?
Have a look at the [Nx Console extensions](https://nx.dev/nx-console). It provides autocomplete support, a UI for exploring and running tasks & generators, and more! Available for VSCode, IntelliJ and comes with a LSP for Vim users.
## Ready to deploy?
Just run `nx build demoapp` to build the application. The build artifacts will be stored in the `dist/` directory, ready to be deployed.
## Set up CI!
Nx comes with local caching already built-in (check your `nx.json`). On CI you might want to go a step further.
- [Set up remote caching](https://nx.dev/core-features/share-your-cache)
- [Set up task distribution across multiple machines](https://nx.dev/core-features/distribute-task-execution)
- [Learn more how to setup CI](https://nx.dev/recipes/ci)
## Connect with us!
- [Join the community](https://nx.dev/community)
- [Subscribe to the Nx Youtube Channel](https://www.youtube.com/@nxdevtools)
- [Follow us on Twitter](https://twitter.com/nxdevtools)