Skip to content

Commit aa16f19

Browse files
committed
update readme, comments, logo
1 parent 9e3c530 commit aa16f19

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A native app built with Tauri version 2 that spawns a Python sub-process (sideca
66

77
## Introduction
88

9-
The example app uses Next.js as the frontend and Python (FastAPI) as the backend. Tauri is a Rust framework that orchestrates the frontend and backend(s) into a native app experience.
9+
This example app uses Next.js as the frontend and Python (FastAPI) as the backend. Tauri is a Rust framework that orchestrates the frontend and backend(s) into a native app experience.
1010

1111
This template project is intended to demonstrate the use of single file Python executables with Tauri v2.
1212

@@ -32,9 +32,9 @@ The use of "sidecars" is to allow developers to package dependencies to make ins
3232

3333
This should give you everything you need to build a local, native application that can use other programs to perform specialized work (like a server, llm engine or database).
3434

35-
- Launch and communicate with any binary or runtime written in any language. This example uses a single Python executable.
35+
- Launch and communicate with any binary or runtime written in any language. This example uses a Python executable.
3636

37-
- Communicate between frontend (javascript) and a spawned server via http.
37+
- Communicate between frontend (javascript) and backend (Python) server via http.
3838

3939
- IPC communication between frontend (javascript) and Tauri (Rust) framework.
4040

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default function Home() {
143143

144144

145145
// Start python api server. @TODO Update this for v2
146-
// This does the same thing as in the main.rs file but in js.
146+
// This does the same shutdown procedure as in main.rs.
147147
// useEffect(() => {
148148
// const start = async () => {
149149
// // const { Command } = window.__TAURI__.shell;

extras/sidecar-logo.png

5.27 KB
Loading

0 commit comments

Comments
 (0)