You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-15Lines changed: 11 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,11 @@ Typical uses would be deployment to Kubernetes, demos of Docker, CI/CD (build pi
8
8
9
9
The app has several basic pages accessed from the top navigation menu, some of which are only lit up when certain configuration variables are set (see 'Optional Features' below):
10
10
11
-
-**'Info'** - Will show system & runtime information, and will also display if the app is running from within a Docker container and Kubernetes.
12
-
-**'Tools'** - Some tools useful in demos, such a forcing CPU load (for autoscale demos), and error/exception pages for use with App Insights or other monitoring tool.
13
-
-**'Monitoring'** - Displays realtime CPU load and memory working set charts, fetched from an REST API (/api/monitoringdata) and displayed using chart.js
14
-
-**'Weather'** - (Optional) Gets the location of the client page (with HTML5 Geolocation). The resulting location is used to fetch a weather forecast from the [OpenWeather API](https://openweathermap.org/)
15
-
-**'User Account'** - (Optional) When configured with Azure AD (application client id and secret) user login button will be enabled, and an user-account details page enabled, which calls the Microsoft Graph API
11
+
-**Info** - Will show system & runtime information, and will also display if the app is running from within a Docker container and Kubernetes.
12
+
-**Tools** - Some tools useful in demos, such a forcing CPU load (for autoscale demos), and error/exception pages for use with App Insights or other monitoring tool.
13
+
-**Monitoring** - Displays realtime CPU load and memory working set charts, fetched from an REST API and displayed using chart.js
14
+
-**Weather** - (Optional) Gets the location of the client page (with HTML5 Geolocation). The resulting location is used to fetch a weather forecast from the [OpenWeather API](https://openweathermap.org/)
15
+
-**User Account** - (Optional) When configured with Azure AD (application client id and secret) user login button will be enabled, and an user-account details page enabled, which calls the Microsoft Graph API
The app will start up and run with zero configuration, however the only features that will be available will be the Info, Tools & Monitoring views. The following optional features can be enabled:
100
+
The app will start up and run with zero configuration, however the only features that will be available will be the *Info*, *Tools* & *Monitoring* views. The following optional features can be enabled:
107
101
108
102
### Application Insights
109
103
@@ -174,12 +168,14 @@ If running locally, and using appsettings.Development.json, this can be configur
174
168
175
169
If you want to deploy to an Azure Container App, a Bicep template is provided in the [deploy](deploy/) directory
176
170
177
-
For a super quick deployment, use `make deploy` which will deploy to a resource group, demoapps and deploy the latest image hosted in GitHub
171
+
For a quick deployment, use `make deploy` which will create a resource group, the Azure Container App instance (with supporting resources) and deploy the latest image to it
178
172
179
173
```bash
180
174
make deploy
181
175
```
182
176
177
+
> Note. Azure Container App doesn't currently support HTTP header forwarding, so Azure AD sign-in will not work as it mis-redirects to the wrong URL
0 commit comments