1.2 KiB
1.2 KiB
This file explains how Visual Studio created the project.
The following tools were used to generate this project:
- Angular CLI (ng)
The following steps were used to generate this project:
- Create Angular project with ng:
ng new awesomemicroservices.client --defaults --skip-install --skip-git --no-standalone
. - Add
proxy.conf.js
to proxy calls to the backend ASP.NET server. - Add
aspnetcore-https.js
script to install https certs. - Update
package.json
to callaspnetcore-https.js
and serve with https. - Update
angular.json
to point toproxy.conf.js
. - Update
app.component.ts
component to fetch and display weather information. - Modify
app.component.spec.ts
with updated tests. - Update
app.module.ts
to import the HttpClientModule. - Create project file (
awesomemicroservices.client.esproj
). - Create
launch.json
to enable debugging. - Update package.json to add
jest-editor-support
. - Update package.json to add
run-script-os
. - Add
karma.conf.js
for unit tests. - Update
angular.json
to point tokarma.conf.js
. - Add project to solution.
- Update proxy endpoint to be the backend server endpoint.
- Add project to the startup projects list.
- Write this file.