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

Sync #3939

Closed
wants to merge 5 commits into from
Closed

Sync #3939

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
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,28 @@ bash <(curl -s https://raw.githubusercontent.com/Yidadaa/ChatGPT-Next-Web/main/s
- [How to use Vercel (No English)](./docs/vercel-cn.md)
- [User Manual (Only Chinese, WIP)](./docs/user-manual-cn.md)

## Build it yourself

Install Node.js and Yarn (if not already installed). You can download Node.js from the official website: https://nodejs.org/. Yarn can be installed using npm:
```shell
npm install -g yarn
```
Install Rust and its build tools. You can install Rust by following the instructions on the official Rust website: https://www.rust-lang.org/tools/install.

Install additional system dependencies (for Ubuntu only):
```shell
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf libsoup2.4-dev libpango1.0-dev libgtk2.0-dev build-essential libgtk-3-dev
```
Install frontend dependencies:
```shell
yarn install
```
Build the app using Tauri:
```shell
cargo build
```

## Screenshots

![Settings](./docs/images/settings.png)
Expand Down
Loading