2022-06-03 07:51:50 +02:00
|
|
|
# We need your help to translate this document to your native language
|
|
|
|
|
2022-04-12 06:43:15 +02:00
|
|
|
[**Preview**](https://rustdesk.com/docs/)
|
|
|
|
|
2023-08-20 23:07:18 +02:00
|
|
|
Install [hugo](https://gohugo.io/getting-started/installing/)
|
|
|
|
|
|
|
|
The clone this repo
|
|
|
|
`git clone https://github.com/rustdesk/doc.rustdesk.com.git`
|
|
|
|
|
|
|
|
Change to this folder:
|
|
|
|
|
|
|
|
`cd docs.rustdesk.com`
|
|
|
|
|
|
|
|
Then run the following commands:
|
2022-04-12 04:30:24 +02:00
|
|
|
```
|
2023-08-20 23:07:18 +02:00
|
|
|
hugo new site quickstart
|
|
|
|
cd quickstart
|
|
|
|
git init
|
2022-04-12 04:30:24 +02:00
|
|
|
git clone https://github.com/matcornic/hugo-theme-learn themes/hugo-theme-learn
|
2023-08-20 23:07:18 +02:00
|
|
|
echo "theme = 'hugo-theme-learn'" >> hugo.toml
|
|
|
|
hugo server
|
2022-04-12 04:30:24 +02:00
|
|
|
```
|
2023-08-20 23:07:18 +02:00
|
|
|
|
|
|
|
Make any changes and then reupload.
|