You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update online editor docs with images and UI walkthroughs
Significantly expanded Online.md with new screenshots and step-by-step UI guides for creating jobs, using the code tab, and interacting with the AI Code Assistant. Replaced the Mermaid flowchart with illustrated, image-based documentation. Added several PNG images to support the updated docs, including create-online-job.png and editor-full-editor.png. Clarified deployment instructions in Deployment.md and improved formatting and clarity throughout. The AI Code Assistant section now features a screenshot and recommends Claude Opus 4.6+ for best results. These changes make the documentation more visual, user-friendly, and accessible for new users.
Copy file name to clipboardExpand all lines: wiki-content/Deployment.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ The repository includes an `azure.yaml` file in the AppHost project, enabling de
64
64
65
65
The fastest way to deploy is a single command that combines provisioning and deployment.
66
66
67
-
Navigate to the AppHost root directory and run:
67
+
In the Command prompt window, or the Terminal window in `Visual Studio` or `Visual Studio Code`, navigate to the `AppHost` directory and run:
68
68
69
69
```bash
70
70
azd auth login
@@ -80,7 +80,7 @@ This command:
80
80
2. Builds and containerizes all services (Web, Scheduler, Agent)
81
81
3. Deploys everything to Azure Container Apps
82
82
83
-
No manual infrastructure setup is required. The Aspire AppHost defines the entire application topology, and `azd` translates it into Azure resources automatically.
83
+
No manual infrastructure setup is required. The **Aspire AppHost** defines the entire application topology, and `azd` translates it into Azure resources automatically.
Copy file name to clipboardExpand all lines: wiki-content/Online.md
+25-34Lines changed: 25 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,53 +6,42 @@ The online code editor allows you to write, compile, and deploy jobs directly in
6
6
7
7
## Overview
8
8
9
-
The editor is embedded in the **Code Tab** of the Job Details dialog. It uses the [Monaco Editor](https://microsoft.github.io/monaco-editor/) (the same editor that powers Visual Studio Code) and supports both C# and Python. Combined with the AI Code Assistant, it provides a complete development environment for automation jobs without any local setup.
The editor is embedded in the **Code Tab** of the Job Details dialog. It uses the [Monaco Editor](https://microsoft.github.io/monaco-editor/) (the same editor that powers Visual Studio Code) and supports both `C#` and `Python`. Combined with the AI Code Assistant, it provides a complete development environment for automation jobs without any local setup.
The Code Tab has two modes, selectable via a dropdown:
28
+

29
+
30
+
Click the `Code` tab. The `Code` tab has two modes:
45
31
46
32
| Mode | Description |
47
33
|------|-------------|
48
-
|**Code Edit** (default)| Write and edit code in the Monaco editor |
49
-
|**Code Upload**| Upload a pre-built `.nupkg` file directly|
34
+
|**Editor**| Write and edit code in the Monaco editor |
35
+
|**Upload**| Upload a pre-built `.nupkg` file. Create this file by saving code created with the `Editor` or using the [Visual Studio](https://github.com/Blazor-Data-Orchestrator/BlazorDataOrchestrator/wiki/Visual-Studio) project. |
In **Code Edit** mode, a dropdown at the top of the editor lists all files in the job package. You can switch between files to edit them.
43
+
44
+
In **Editor** mode, the `Languge` dropdown allows you to switch beteen coding in `C#` or `Python`. The `File` dropdown lists all files in the job package. You can switch between files to edit them.
56
45
57
46
### C# Job Files
58
47
@@ -141,7 +130,9 @@ Dependencies are resolved at compilation time. Transitive dependencies (dependen
141
130
142
131
## AI Code Assistant
143
132
144
-
The AI Code Assistant is available in **Code Edit** mode. Click the **AI** button in the editor toolbar to open the chat dialog.
133
+

134
+
135
+
The AI Code Assistant is available in **Code Edit** mode. Click the **AI** button in the editor toolbar to open the chat dialog. **Note:** For best performance use Claude Opus 4.6 or higher as the AI model.
0 commit comments