Skip to content

Commit 695817c

Browse files
author
lukwol
committed
Rename Desktop Setup chapter to Tauri Setup
1 parent 76194f5 commit 695817c

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/.vitepress/config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default {
7171
link: "/client/08-production-deployment",
7272
},
7373
{ text: "Recap — The Web App", link: "/client/09-web-app-recap" },
74-
{ text: "Desktop Setup", link: "/client/10-desktop-setup" },
74+
{ text: "Tauri Setup", link: "/client/10-tauri-setup" },
7575
{ text: "Desktop Additions", link: "/client/11-desktop-additions" },
7676
{ text: "Native HTTP", link: "/client/12-native-http" },
7777
{ text: "Mobile Setup", link: "/client/13-mobile-setup" },

docs/client/09-web-app-recap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ If you came to this guide to learn how to build a full-stack web app in Gleam
4646

4747
The same Lustre frontend you just built can run outside the browser, too. The next four chapters wrap it in [Tauri](https://tauri.app):
4848

49-
- **[Desktop Setup](/client/10-desktop-setup)** — turn the Vite project into a native macOS/Windows/Linux app with no changes to the Gleam code.
49+
- **[Tauri Setup](/client/10-tauri-setup)** — turn the Vite project into a native macOS/Windows/Linux app with no changes to the Gleam code.
5050
- **[Desktop Additions](/client/11-desktop-additions)** — a View menu, Cmd+R reload, and platform detection.
5151
- **[Native HTTP](/client/12-native-http)** — route API calls through Tauri's Rust backend so production desktop builds escape browser CORS.
5252
- **[Mobile Setup](/client/13-mobile-setup)** — the same frontend on iOS and Android simulators.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Desktop Setup
1+
# Tauri Setup
22

33
The app runs in the browser — but it doesn't have to. [Tauri](https://tauri.app) is an incredible framework for building native desktop apps from web frontends — it wraps the Vite frontend in a native desktop window using the operating system's built-in webview. The Gleam code, HTML, and CSS don't change at all; Tauri simply provides the frame around them and a Rust backend that can talk to the OS.
44

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Before starting, make sure you have the following installed:
133133
- [Android Studio](https://developer.android.com/studio) — required for Android builds; follow [Tauri's Android setup guide](https://tauri.app/start/prerequisites/#android) to configure the NDK and environment variables
134134

135135
::: tip Web-only path
136-
If you only want to build the server and the browser app, you can skip Rust, Xcode, Cocoapods, and Android Studio. You'll be able to follow the entire Server track and chapters 1–8 of the Client track. Add the extra prerequisites when you reach [Desktop Setup](/client/10-desktop-setup).
136+
If you only want to build the server and the browser app, you can skip Rust, Xcode, Cocoapods, and Android Studio. You'll be able to follow the entire Server track and chapters 1–8 of the Client track. Add the extra prerequisites when you reach [Tauri Setup](/client/10-tauri-setup).
137137
:::
138138

139139
## How to Use This Guide

0 commit comments

Comments
 (0)