Skip to content

Commit 7fa7067

Browse files
authored
doc updates (#37)
* doc updates * Remove broken link in README * minor update to mwa guide
1 parent 3156720 commit 7fa7067

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio
170170
- [Known issues](known-issues.md)
171171
- [Troubleshooting](troubleshooting.md)
172172
- [Pattern Simulations](demo.md)
173-
- [Developer Experience](developer-experience.md)
174173
- [Calculating SLA](slo-calculation.md)
175174
- [Find additional resources](additional-resources.md)
176175
- [Report security concerns](SECURITY.md)
@@ -188,3 +187,9 @@ Any use of third-party trademarks or logos are subject to those third-party's po
188187
## Data Collection
189188

190189
The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkId=521839. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
190+
191+
### Telemetry Configuration
192+
193+
Telemetry collection is on by default.
194+
195+
To opt out, run the following command `azd env set ENABLE_TELEMETRY` to `false` in your AZD environment.

docs/aac/java-mwa-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This article shows you how to implement the Modern Web App pattern. The Modern W
1212
> ![GitHub logo](../../../../../_images/github.svg) There's a ***[reference implementation][reference-implementation]*** (sample app) of the Modern Web App pattern. It represents the end-state of the Modern Web App implementation. It's a production-grade web app that features all the code, architecture, and configuration updates discussed in this article. Deploy and use the reference implementation to guide your implementation of the Modern Web App pattern.
1313
## Architecture guidance
1414

15-
The Modern Web App pattern builds on the Reliable Web App pattern. It requires a few additional architectural components to implement. You need a message queue, container platform, another storage service, and a container registry (*see figure 1*).
15+
The Modern Web App pattern builds on the Reliable Web App pattern. It requires a few additional architectural components to implement. You need a message queue, container platform, storage service, and a container registry (*see figure 1*).
1616

1717
[![Diagram showing the baseline architecture of the Modern Web App pattern.](../../../_images/modern-web-app-architecture.svg)](../../../_images/modern-web-app-architecture.svg#lightbox)
1818
*Figure 1. Essential architectural elements of the Modern Web App pattern.*

prerequisites.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ The project has the following prerequisites:
2121
| macOS |||
2222
| macOS arm64 |||
2323

24+
## Azure CLI Extensions
25+
26+
### Azure Service Connector Passwordless extension
27+
28+
Install the [service connector extension](https://learn.microsoft.com/azure/service-connector/tutorial-passwordless?tabs=user%2Cdotnet%2Csql-me-id-dotnet%2Cappservice&pivots=postgresql#install-the-service-connector-passwordless-extension).
29+
30+
```shell
31+
az extension add --name serviceconnector-passwordless --upgrade
32+
```
33+
2434
## Recommended VSCode extensions
2535

2636
If you are using VSCode, please install the following extensions:
@@ -36,4 +46,4 @@ If you are using VSCode, please install the following extensions:
3646
1. Docker Desktop
3747
1. VSCode
3848
1. VSCode ms-vscode-remote.remote-containers extension
39-
1. git
49+
1. git

0 commit comments

Comments
 (0)