Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zachcp/quarto-tauri-template
A template application to get started with creating tauri application with a quarto frontend
https://github.com/zachcp/quarto-tauri-template
quarto tauri
Last synced: about 1 month ago
JSON representation
A template application to get started with creating tauri application with a quarto frontend
- Host: GitHub
- URL: https://github.com/zachcp/quarto-tauri-template
- Owner: zachcp
- Created: 2023-08-28T19:23:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-28T19:34:03.000Z (over 1 year ago)
- Last Synced: 2023-09-05T05:04:02.752Z (over 1 year ago)
- Topics: quarto, tauri
- Language: Rust
- Homepage: https://github.com/zachcp/quarto-tauri-template
- Size: 175 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quarto + Tauri
This should help you get started creating a new Tauri App with a Quarto frontend.
## Get started
```sh
# assuming quarto and cargo are installed and on your path.# install the tauri cli
cargo install tauri-cli# add cargo bind dir to the path
export PATH=$PATH:~/.cargo/bin/# to develop
cargo-tauri dev# to package. this build is ~8MB.
cargo-tauri build
```