Public front-end for the Land Use Planning application. Based on the PRC Application bcgov/nrts-prc-public.
Technology | Version | Website | Description |
---|---|---|---|
node | 8.x.x | https://nodejs.org/en/ | JavaScript Runtime |
npm | 6.x.x | https://www.npmjs.com/ | Node Package Manager |
ng | 6.x.x | https://cli.angular.io/ | Angular CLI |
yarn | latest | https://yarnpkg.com/en/ | Package Manager (more efficient than npm) |
Note: This app also requires bcgov/landuseplanning-api to handle its requests.
Note: Windows users can use NVM Windows to install and manage multiple versions of Node+Npm.
Note: Use @angular/cli
. Do not use @angular/angular-cli
.
npm install -g @angular/cli
npm install -g yarn
yarn install
npm start
Go to http://localhost:4300 to verify that the application is running
Note: To change the default port edit angular.json
.
yarn install
Run the build
The build artifacts will be stored in the ./dist/
directory.
npm run build
--prod
flag to run the app in prod mode
ng serve --prod
Linting and formatting is handled by a combiation of TSlint
and Prettier
. The reason for this, is that you get the best of both worlds: TSlint's larger selection of linting rules with Prettier's robust formatting rules.
These 2 linters (tslint, Prettier) do have overlapping rules. To avoid weird rule interactions, TSlint has been configured to defer any overlapping rules to Prettier, via the use of tslint-config-prettier
in tslint.json
.
Recommend installing the VSCode Prettier extension, so Prettier's formatting can be applied on-the-fly.
TSLint, Prettier, Stylelint, husky, lint-staged
Package.json has been configured to use husky
/lint-staged
to run the lint-fix
(linting + formatting) commands, against the files staged to be committed, whenever you perform a commit. This ensures that all committed code has been linted and formatted correctly.
If the linters or formatters find issues that cannot be automatically fixed, it will throw an error and provide output as to what is wrong. Fix the issues and commit again.
*.ts
files using TSLint
.
npm run lint:ts
*.scss
files using Stylelint
.
npm run lint:scss
npm run lint
Note: In the worst case scenario, where linting/formatting has been neglected, then these lint-fix
commands have the potential to create 100's of file changes. In this case, it is recommended to only run these commands as part of a separate commit.
Note: Not all linting/formatting errors can be automatically fixed, and will require human intervention.
*.ts
files using TSLint
+ Prettier
.npm run lint-fix:ts
*.scss
files using Stylelint
.
npm run lint-fix:scss
npm run lint-fix
watch=true
npm run tests
watch=false
npm run tests-ci
Run the end-to-end tests
Before running the tests make sure you are serving the app via ng serve
.
npm run e2e
It is possible to run a single describe
or it
block by changing it to fdescribe
or fit
respectively. The prepended f
stands for "focus." As of Oct. 13, 2022, the version of Karma we're using only provides this method of running portions of the test code. For example:
fdescribe('Example test block', () => {
it('Checks the veractiy of "true"', () => {
expect(true).toBeTruthy();
});
});
Now if you run ng test
, only this fdescribe
block will run.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|module
.
ng g c customer
ng g d search-box
ng g s general-data
Angular will give out a warning line after this command:
WARNING Service is generated but not provided, it must be provided to be used
After generating a service, we must go to its owning module and add the service to the providers
array.
A brief guide to Angular CLI's code scaffolding can be found in eagle-dev-guides
# class
ng g cl models/customer
# interface
ng g i models/person
# enum
ng g enum models/gender
ng g pipe shared/init-caps
Create a login directory and generate a login module in that directory.
ng g module login/login.module
Generate a module called admin and add routing feature to it.
ng g module admin --routing
ng set default.styleExt css
ng new my-app --routing --style scss
For dev, test, and production builds on OpenShift/Jenkins see openshift/README.md for detailed instructions on how to setup in an OpenShift environment using nginx. -->
An overview of the EPIC test stack can be found in our documentation guides: EPIC Test Stack.
Instructions on how running tests unit tests and end-to-end tests can be found in our test documentation.
Feel free to create pull requests from the default "develop" branch, click here to create one automatically: https://github.com/bcgov/eagle-public/pull/new/develop