This project was generated with Angular CLI version 6.2.1. For Angular docs and tutorials see the Angular reference
The app is hosted on github pages, The following this link --> csse-web-app <-- to visit the login page
- Run
npm install -g npm
to update npm version - Run
npm install -g @angular/cli
to get the angular command line tools - Run
npm install
to install all dependencies in package.json
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
A logger has been integrated into the project. To set upp logging in a component,
- import the service
import { ToastrService } from 'ngx-toastr';
- inject it using the component's constructor
constructor(private toastr: ToastrService) { }
- call the log methods on the logger
this.toastr.success('some success message'); this.toastr.error('some error message');
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng test
to execute the unit tests via Karma.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI README.