From 686bb2ccb3c465959cb6e6f2be34fad63d48111a Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Fri, 14 Mar 2025 17:29:22 +0100 Subject: [PATCH] Updated the run command in the build documentation (#347) --- documentation/Build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/Build.md b/documentation/Build.md index 2f620eac..b25a27ef 100644 --- a/documentation/Build.md +++ b/documentation/Build.md @@ -42,6 +42,6 @@ Do you want to test your changes before creating a PR? Follow these steps: 2. At least once, you have to run the `nu build.nu publish` command (see above, "Build instructions"). This is necessary because the Tauri framework checks whether the .NET app as so-called "sidecar" is available. Although the sidecar is only necessary for the final release and shipping, Tauri requires it to be present during development. 3. Open a terminal (in this case, it doesn't have to be NuShell). 4. Navigate to the `runtime` directory within the repository, e.g. `cd repos/mindwork-ai-studio/runtime`. -5. Run `cargo run`. +5. Run `cargo tauri dev --no-watch`. Cargo will compile the Rust code and start the runtime. The runtime will then start the .NET compiler. When the .NET source code is compiled, the app will start. You can now test your changes. \ No newline at end of file