KypoAdaptiveModelSimulator
Running up the Project:
Install project dependencies:
$ npm install
Then run
$ ng serve --ssl
Navigate to https://localhost:4200/
. The app will automatically reload if you change any of the source files.
How to use json-server as mock backend with provided dummy data
- Install json-server
npm install -g json-server
. - Run the server with provided parameters
json-server -w ./utils/json-server/db.js --routes ./utils/json-server/routes.json --middlewares ./utils/json-server/server.js
. - Run
npm install
. - Run the app in local environment and ssl
ng serve --configuration local --ssl
and access it onhttps://localhost:4200
.
Code scaffolding
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
.
Build library
Run npm run build-and-pack
to build and pack the project. The build artifacts and package will be stored in the dist/
directory.
Running unit tests
Run ng test
to execute the unit tests via Karma.
Running end-to-end tests
Run ng e2e
to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
This project was generated with Angular CLI version 13.1.3.