Skip to content

marklise/nrts-prc-admin

 
 

Repository files navigation

bcgov / nrts-prc-admin

Pre-requisites

  • Node.js 8.12.0 (run node -v to verify)
  • npm 6.4.1 (run npm -v to verify)
  • Angular CLI 6.2.1 (run npm ls -g @angular/cli --depth=0 to verify)
  • Yarn 1.10.1 or greater (run yarn -v to verify)
  • TSLint 5.11.0 or greater (run tslint -v to verify)
  • TypeScript 2.3.4 (for webpack) (run npm ls -g typescript --depth=0 to verify)

Uninstall Older Node (if needed)

  1. Uninstall all global packages: npm uninstall -g <package>
  2. Uninstall Node.js
  3. Delete C:\Users\{user}\AppData\Roaming\npm
  4. Delete C:\Users\{user}\AppData\Roaming\npm-cache
  5. Delete C:\Users\{user}\AppData\Local\Temp\npm-*
  6. Reboot

Install Node.js

Includes npm... Just use default settings.

Install Packages

  1. Install Angular CLI: npm i -g @angular/cli@6.2.1
  2. Install Yarn: npm i -g yarn
  3. Install TSLint: npm i -g tslint
  4. Install TypeScript (needed for Webpack): npm i -g typescript@'>=2.1.0 <2.4.0'

Verify the Installation

npm ls -g --depth=0

Fork, Build and Run

  1. After installing Node and Yarn, you can fork or straight download a copy of this application to start your own app.

  2. First download all the dependencies with yarn install.

  3. Run npm start to start the webpack server to run the application on port 4200.

    Go to http://localhost:4200 to verify that the application is running.

    💡 To change the default port, open .angular-cli.json, change the value on defaults.serve.port.

  4. Run npm run build to just build the project. The build artifacts will be stored in the dist/ directory. Use the -prod flag for a production build, like so: ng serve --prod to run in production mode.

  5. Run npm run lint to just lint your app code using TSLint.

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|module.

Example: Generate a customer component

ng g c customer

Example: Generate a directive: search-box

ng g d search-box

Example: Generate a service: general-data

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.

Example: Generate a service and include it in a module automatically

ng g s general-data2 -m app.module

Example: Generate a class, an interface and enum

# class
ng g cl models/customer

# interface
ng g i models/person

# enum
ng g enum models/gender

Example: Generate a pipe

ng g pipe shared/init-caps

Generate a module

Create a login directory and generate a login module in that directory.

ng g module login/login.module

Add/Generate Routing Features

Generate a module called admin and add routing feature to it.

ng g module admin --routing

Running Tests

Unit tests

Set up via Karma, Jasmine:

  1. Run ng test to execute the unit tests via Karma.

End-to-end tests

Set up with Protractor:

  1. Run ng e2e to execute the end-to-end tests via Protractor.
  2. Before running the tests make sure you are serving the app via ng serve.

Change aspects of the application

Change style dialect

ng set default.styleExt css

Regenerate a brand new project with routing and scss options

ng new my-app --routing --style scss

Getting Help

  1. To get more help on the Angular CLI use ng help or go check out the Angular CLI README.
  2. ng doc component to look up documentation for features.
  3. ng serve --help to look up doc for ng serve command.

Build and Deployment

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.

How to Contribute

Feel free to create pull requests from the default "master" branch, click here to create one automatically: https://github.com/bcgov/nrts-prc-admin/pull/new/master

About

NRTS PRC Admin System

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 68.6%
  • CSS 15.4%
  • HTML 15.2%
  • Other 0.8%