Skip to content

Commit 950018b

Browse files
committed
Fix markdown lint issues
1 parent fbb4b05 commit 950018b

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

aca-host/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
# Deploying on Azure Container Apps
2+
23
Due to [a limitation](https://github.com/Azure/azure-dev/issues/2736) of azd, the azure.yaml file for deploying to Azure Container Apps lives here along with symbolic links to `app`,`data` and `scripts` folder.
4+
35
## For Linux/MacOS users
6+
47
If you are on Linux/MacOS, it should work without any extra settings to deploy to Azure Container Apps. Please use:
8+
59
```bash
610
cd aca-host
711
azd up
812
```
13+
914
## For Windows users
10-
Because Windows [doesn't enable symbolic links by default](https://stackoverflow.com/questions/5917249/git-symbolic-links-in-windows), you may need to enable [Developer Mode](https://learn.microsoft.com/en-us/windows/apps/get-started/enable-your-device-for-development),
11-
and symlinks for git before cloning this repo.
15+
Because Windows [doesn't enable symbolic links by default](https://stackoverflow.com/questions/5917249/git-symbolic-links-in-windows), you may need to enable [Developer Mode](https://learn.microsoft.com/en-us/windows/apps/get-started/enable-your-device-for-development) and symlinks for git before cloning this repo.
1216
To enable symlinks for git, please use
17+
1318
```bash
1419
# local setting
1520
git config core.symlinks true
@@ -18,6 +23,7 @@ git config --global core.symlinks true
1823
```
1924

2025
Please ensure that the symlinks work correctly and then run:
26+
2127
```bash
2228
cd aca-host
2329
azd up

docs/azure_container_apps.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
# Deploying on Azure Container Apps
2+
23
Due to [a limitation](https://github.com/Azure/azure-dev/issues/2736) of azd, the azure.yaml file for deploying to Azure Container Apps lives in folder `aca-host` along with symbolic links to `app`,`data` and `scripts` folder.
4+
35
## For Linux/MacOS users
6+
47
If you are on Linux/MacOS, it should work without any extra settings to deploy on Azure Container Apps. Please use:
8+
59
```bash
610
cd aca-host
711
azd up
812
```
13+
914
## For Windows users
10-
Because Windows [doesn't enable symbolic links by default](https://stackoverflow.com/questions/5917249/git-symbolic-links-in-windows), you may need to enable [Developer Mode](https://learn.microsoft.com/en-us/windows/apps/get-started/enable-your-device-for-development),
11-
and symlinks for git before cloning this repo.
15+
16+
Because Windows [doesn't enable symbolic links by default](https://stackoverflow.com/questions/5917249/git-symbolic-links-in-windows), you may need to enable [Developer Mode](https://learn.microsoft.com/en-us/windows/apps/get-started/enable-your-device-for-development) and symlinks for git before cloning this repo.
1217
To enable symlinks for git, please use
18+
1319
```bash
1420
# local setting
1521
git config core.symlinks true
@@ -18,7 +24,8 @@ git config --global core.symlinks true
1824
```
1925

2026
Please check whether the symlink works correctly and then run:
27+
2128
```bash
2229
cd aca-host
2330
azd up
24-
```
31+
```

0 commit comments

Comments
 (0)