Skip to content

Commit 1e003f4

Browse files
committed
feat(setup): add optional frontend setup instructions to macOS, Windows, and Linux guides
1 parent 009f102 commit 1e003f4

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

docs/docs/setup/LINUX.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,24 @@ dapr init --runtime-version 1.16.0 --slim
6666
dapr --version
6767
```
6868

69+
### 5. Setup Frontend (Optional)
70+
71+
> [!NOTE]
72+
> This step is only required if you plan to write and implement config maps for workflow setup forms.
73+
74+
Install the frontend playground for your application:
75+
76+
```bash
77+
# Create the frontend static directory
78+
mkdir -p frontend/static
79+
80+
# Install the app playground
81+
npx @atlanhq/app-playground install-to frontend/static
82+
```
83+
84+
> [!NOTE]
85+
> `frontend/static` is the default directory. You can change this to a different location, but you'll need to update the path in your workflow definition accordingly.
86+
6987
> [!NOTE]
7088
> Your development environment is now ready! Head over to our [Getting Started Guide](../guides/getting-started.md) to learn how to:
7189
> - Install project dependencies

docs/docs/setup/MAC.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,24 @@ curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh
5656
dapr init --runtime-version 1.16.0 --slim
5757
```
5858

59+
### 5. Setup Frontend (Optional)
60+
61+
> [!NOTE]
62+
> This step is only required if you plan to write and implement config maps for workflow setup forms.
63+
64+
Install the frontend playground for your application:
65+
66+
```bash
67+
# Create the frontend static directory
68+
mkdir -p frontend/static
69+
70+
# Install the app playground
71+
npx @atlanhq/app-playground install-to frontend/static
72+
```
73+
74+
> [!NOTE]
75+
> `frontend/static` is the default directory. You can change this to a different location, but you'll need to update the path in your workflow definition accordingly.
76+
5977
> [!NOTE]
6078
> Your development environment is now ready! Head over to our [Getting Started Guide](../guides/getting-started.md) to learn how to:
6179
> - Install project dependencies

docs/docs/setup/WINDOWS.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,24 @@ dapr init --runtime-version 1.16.0 --slim
7272
dapr --version
7373
```
7474

75+
### 4. Setup Frontend (Optional)
76+
77+
> [!NOTE]
78+
> This step is only required if you plan to write and implement config maps for workflow setup forms.
79+
80+
Install the frontend playground for your application:
81+
82+
```powershell
83+
# Create the frontend static directory
84+
New-Item -ItemType Directory -Force -Path "frontend\static"
85+
86+
# Install the app playground
87+
npx @atlanhq/app-playground install-to frontend/static
88+
```
89+
90+
> [!NOTE]
91+
> `frontend/static` is the default directory. You can change this to a different location, but you'll need to update the path in your workflow definition accordingly.
92+
7593
> [!NOTE]
7694
> Your development environment is now ready! Head over to our [Getting Started Guide](../guides/getting-started.md) to learn how to:
7795
> - Install project dependencies

0 commit comments

Comments
 (0)