Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/docs/setup/LINUX.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,24 @@ dapr init --runtime-version 1.16.0 --slim
dapr --version
```

### 5. Setup Frontend (Optional)

> [!NOTE]
> This step is only required if you plan to write and implement config maps for workflow setup forms.

Install the frontend playground for your application:

```bash
# Create the frontend static directory
mkdir -p frontend/static

# Install the app playground
npx @atlanhq/app-playground install-to frontend/static
```

> [!NOTE]
> `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.

> [!NOTE]
> Your development environment is now ready! Head over to our [Getting Started Guide](../guides/getting-started.md) to learn how to:
> - Install project dependencies
Expand Down
18 changes: 18 additions & 0 deletions docs/docs/setup/MAC.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,24 @@ curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh
dapr init --runtime-version 1.16.0 --slim
```

### 5. Setup Frontend (Optional)

> [!NOTE]
> This step is only required if you plan to write and implement config maps for workflow setup forms.

Install the frontend playground for your application:

```bash
# Create the frontend static directory
mkdir -p frontend/static

# Install the app playground
npx @atlanhq/app-playground install-to frontend/static
```

> [!NOTE]
> `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.

> [!NOTE]
> Your development environment is now ready! Head over to our [Getting Started Guide](../guides/getting-started.md) to learn how to:
> - Install project dependencies
Expand Down
18 changes: 18 additions & 0 deletions docs/docs/setup/WINDOWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,24 @@ dapr init --runtime-version 1.16.0 --slim
dapr --version
```

### 4. Setup Frontend (Optional)

> [!NOTE]
> This step is only required if you plan to write and implement config maps for workflow setup forms.

Install the frontend playground for your application:

```powershell
# Create the frontend static directory
New-Item -ItemType Directory -Force -Path "frontend\static"

# Install the app playground
npx @atlanhq/app-playground install-to frontend/static
```

> [!NOTE]
> `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.

> [!NOTE]
> Your development environment is now ready! Head over to our [Getting Started Guide](../guides/getting-started.md) to learn how to:
> - Install project dependencies
Expand Down