Skip to content

Commit 363bd55

Browse files
committed
Fix markdown lint issues
1 parent fbb4b05 commit 363bd55

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

aca-host/README.md

Lines changed: 6 additions & 0 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.
34
## For Linux/MacOS users
5+
46
If you are on Linux/MacOS, it should work without any extra settings to deploy to Azure Container Apps. Please use:
7+
58
```bash
69
cd aca-host
710
azd up
811
```
12+
913
## For Windows users
1014
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),
1115
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: 7 additions & 0 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.
34
## For Linux/MacOS users
5+
46
If you are on Linux/MacOS, it should work without any extra settings to deploy on Azure Container Apps. Please use:
7+
58
```bash
69
cd aca-host
710
azd up
811
```
12+
913
## For Windows users
14+
1015
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),
1116
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,6 +24,7 @@ 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

0 commit comments

Comments
 (0)