doc.rustdesk.com/content/dev/build/web/_index.de.md

31 lines
919 B
Markdown
Raw Normal View History

2022-05-13 20:30:36 +02:00
---
2023-01-14 23:19:17 +01:00
title: Web
2022-05-13 20:30:36 +02:00
weight: 23
---
2023-01-20 17:40:33 +01:00
Führen Sie die folgenden Schritte unter Linux oder Mac aus (funktioniert auch unter Windows, allerdings müssen Sie einige Befehle leicht abändern, z. B. `wget` in `curl.exe -O`):
2023-01-14 23:19:17 +01:00
```sh
git clone https://github.com/rustdesk/rustdesk
cd rustdesk/flutter/web/js
2023-01-20 17:40:33 +01:00
# Zuerst protoc installieren, siehe https://google.github.io/proto-lens/installing-protoc.html
2023-01-14 23:19:17 +01:00
npm install ts-proto
# Funktioniert nur mit vite <= 2.8, siehe https://github.com/vitejs/vite/blob/main/docs/guide/build.md#chunking-strategy
yarn build
cd ..
2023-01-20 17:40:33 +01:00
# Für Details zum YUV-Konverter siehe https://github.com/rustdesk/rustdesk/issues/364#issuecomment-1023562050
2023-01-14 23:19:17 +01:00
wget https://github.com/rustdesk/doc.rustdesk.com/releases/download/console/web_deps.tar.gz
# In das aktuelle Verzeichnis entpacken
tar xzf web_deps.tar.gz
cd ..
# Viel Glück!
flutter run -d chrome
```
> Derzeit sind YUV-Konverter und vp9 der Engpass.