Sample app for What's new with Azure Cognitive Services, Ignite 2021 session. Find more Ignite Session Resources.
- Azure Cloud
- Azure Cognitive Services
- Azure Health Bot
- Spatial Analysis
- Text Analytics for Health
- Form Recognizer
- Face API
- Text To Speech
- Angular CLI
- Start Free Azure AI 12 months free popular services + $200 credit
- Create Cognitive Services Resources and copy account key, location and endpoint
- Create and environments files for project as in this example:
export const environment = {
production: false,
cognitive: {
key: 'your key here',
endPoint: 'your end point here',
location: 'your location here'
},
speech: {
key: 'your key here',
endPoint: 'your end point here',
location: 'your location here'
}
};
Install latest stable NodeJS
Optionally install Angular CLI globally to be able to develop with it and to use ng serve
command.
npm i
npm run start
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.
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 build
to build the project. The build artifacts will be stored in the dist/
directory. Use the --prod
flag for a production build.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via Protractor.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.