mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2025-01-10 08:18:43 +01:00
29 lines
594 B
Markdown
29 lines
594 B
Markdown
---
|
|
title: Web
|
|
weight: 23
|
|
---
|
|
|
|
Run below on Linux or Mac
|
|
|
|
Currently, yuv converter and vp9 are the bottleneck
|
|
|
|
```sh
|
|
git clone https://github.com/rustdesk/rustdesk
|
|
cd rustdesk/flutter/web/js
|
|
|
|
# install protoc first http://google.github.io/proto-lens/installing-protoc.html
|
|
npm install ts-proto
|
|
yarn build
|
|
|
|
cd ..
|
|
|
|
# about details of yuv converter, check this https://github.com/rustdesk/rustdesk/issues/364#issuecomment-1023562050
|
|
wget https://github.com/rustdesk/doc.rustdesk.com/releases/download/console/web_deps.tar.gz
|
|
tar xzf web_deps.tar.gz
|
|
|
|
cd ..
|
|
|
|
# Good Luck!
|
|
flutter run -d chrome
|
|
```
|