Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add build steps of desktop application to README.md #111

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 28 additions & 2 deletions desktop/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,33 @@
# Tauri + React + Typescript
# rqbit GUI Application

This template should help get you started developing with Tauri, React and Typescript in Vite.
This is a thin tauri wrapper for the web ui of rqbit.

## Recommended IDE Setup

- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)

## Dependencies

* Tauri CLI.

```
cargo install tauri-cli
```

* Nodejs and NPM

## How to build GUI

* Go to `rqbit/crates/librqbit/webui`

```
npm install
npm run build
```

* Go to `rqbit/desktop`

```
npm install
cargo tauri dev
```
Loading