diff --git a/README.md b/README.md index 9cc78788..a5043040 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@

GitHub repo size GitHub Release GitHub License

-

« LIVE DEMO »
@@ -133,6 +132,7 @@ This repository, including all its contents, sub-projects, modules, and componen ## Translations +- [Chinese / 中文](https://github.com/HeyPuter/puter/blob/main/doc/i18n/README.zh.md) - [Danish / Dansk](https://github.com/HeyPuter/puter/blob/main/doc/i18n/README.da.md) - [English](https://github.com/HeyPuter/puter/blob/main/README.md) - [Hindi / हिंदी](https://github.com/HeyPuter/puter/blob/main/doc/i18n/README.hi.md) diff --git a/doc/i18n/README.da.md b/doc/i18n/README.da.md index df9f9ec8..673cc09f 100644 --- a/doc/i18n/README.da.md +++ b/doc/i18n/README.da.md @@ -5,7 +5,6 @@

GitHub repo størrelse GitHub Udgivelse GitHub Licens

-

« LIVE DEMO »
diff --git a/doc/i18n/README.en.md b/doc/i18n/README.en.md index 9ad73f54..55c22b73 100644 --- a/doc/i18n/README.en.md +++ b/doc/i18n/README.en.md @@ -5,7 +5,6 @@

GitHub repo size GitHub Release GitHub License

-

« LIVE DEMO »
diff --git a/doc/i18n/README.es.md b/doc/i18n/README.es.md index d7a2f22b..c7d3a2d6 100644 --- a/doc/i18n/README.es.md +++ b/doc/i18n/README.es.md @@ -5,7 +5,6 @@

GitHub repo size GitHub Release GitHub License

-

« DEMO EN VIVO »
diff --git a/doc/i18n/README.hi.md b/doc/i18n/README.hi.md index 0bc54ba2..aa26ea3e 100644 --- a/doc/i18n/README.hi.md +++ b/doc/i18n/README.hi.md @@ -5,7 +5,6 @@

GitHub repo size GitHub Release GitHub License

-

« LIVE DEMO »
diff --git a/doc/i18n/README.jp.md b/doc/i18n/README.jp.md index 479e1ad8..5ec1bf36 100644 --- a/doc/i18n/README.jp.md +++ b/doc/i18n/README.jp.md @@ -6,7 +6,6 @@

GitHub リポジトリサイズ GitHub リリース GitHub ライセンス

-

« ライブデモ »
diff --git a/doc/i18n/README.ko.md b/doc/i18n/README.ko.md index c08ab222..cc0ed0fa 100644 --- a/doc/i18n/README.ko.md +++ b/doc/i18n/README.ko.md @@ -5,7 +5,6 @@

GitHub repo size GitHub Release GitHub License

-

« 시연 영상 »
diff --git a/doc/i18n/README.pt.md b/doc/i18n/README.pt.md index 8104a3a6..7a541e84 100644 --- a/doc/i18n/README.pt.md +++ b/doc/i18n/README.pt.md @@ -5,7 +5,6 @@

Tamanho do repositório do GitHub Lançamento no GitHub Licença do GitHub

-

« DEMONSTRAÇÃO AO VIVO »
diff --git a/doc/i18n/README.ru.md b/doc/i18n/README.ru.md index df906217..832dd60b 100644 --- a/doc/i18n/README.ru.md +++ b/doc/i18n/README.ru.md @@ -5,7 +5,6 @@

Размер репозитория GitHub Релиз GitHub Лицензия GitHub

-

« ЖИВОЕ ДЕМО »
diff --git a/doc/i18n/README.tr.md b/doc/i18n/README.tr.md index 34f2d57b..85d9cf30 100644 --- a/doc/i18n/README.tr.md +++ b/doc/i18n/README.tr.md @@ -5,7 +5,6 @@

GitHub Depo Boyutu GitHub Yayınlamak GitHub Lisans

-

« CANLI DEMO »
diff --git a/doc/i18n/README.zh.md b/doc/i18n/README.zh.md new file mode 100644 index 00000000..e463f3f8 --- /dev/null +++ b/doc/i18n/README.zh.md @@ -0,0 +1,133 @@ + +

Puter.com,个人云计算机:所有文件、应用程序和游戏在一个地方,随时随地可访问。

+ +

互联网操作系统!免费、开源且可自行托管。

+ +

+ GitHub repo size GitHub Release GitHub License +

+ +

+ « 在线演示 » +
+
+ Puter.com + · + SDK + · + Discord + · + YouTube + · + Reddit + · + X (Twitter) + · + 漏洞报告 +

+ +

screenshot

+ +
+ +## Puter + +Puter 是一个先进的开源互联网操作系统,设计为功能丰富、速度极快且高度可扩展。Puter 可用作: + +- 一个以隐私为优先的个人云,将所有文件、应用程序和游戏保存在一个安全的地方,随时随地可访问。 +- 构建和发布网站、Web 应用程序和游戏的平台。 +- Dropbox、Google Drive、OneDrive 等的替代品,具有全新的界面和强大的功能。 +- 服务器和工作站的远程桌面环境。 +- 一个友好的开源项目和社区,学习 Web 开发、云计算、分布式系统等更多内容! + +
+ +## 入门指南 + + +### 💻 本地开发 + +```bash +git clone https://github.com/HeyPuter/puter +cd puter +npm install +npm start +``` + +这将会在 http://puter.localhost:4100(或下一个可用端口)启动 Puter。 + +
+ +### 🐳 Docker + + +```bash +mkdir puter && cd puter && mkdir -p puter/config puter/data && sudo chown -R 1000:1000 puter && docker run --rm -p 4100:4100 -v `pwd`/puter/config:/etc/puter -v `pwd`/puter/data:/var/puter ghcr.io/heyputer/puter +``` + +
+ + +### 🐙 Docker Compose + + +#### Linux/macOS +```bash +mkdir -p puter/config puter/data +sudo chown -R 1000:1000 puter +wget https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml +docker compose up +``` +
+ +#### Windows + + +```powershell +mkdir -p puter +cd puter +New-Item -Path "puter\config" -ItemType Directory -Force +New-Item -Path "puter\data" -ItemType Directory -Force +Invoke-WebRequest -Uri "https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml" -OutFile "docker-compose.yml" +docker compose up +``` +
+ +### ☁️ Puter.com + +Puter 可以作为托管服务使用,访问 [**puter.com**](https://puter.com)。 + +
+ +## 系统要求 + +- **操作系统:** Linux, macOS, Windows +- **内存:** 最低 2GB(推荐 4GB) +- **磁盘空间:** 1GB 可用空间 +- **Node.js:** 版本 16+(推荐 22+) +- **npm:** 最新稳定版本 + +
+ +## 支持 + +通过以下渠道与维护者和社区联系: + +- 有 Bug 报告或功能请求?请 [提交问题](https://github.com/HeyPuter/puter/issues/new/choose)。 +- Discord: [discord.com/invite/PQcx7Teh8u](https://discord.com/invite/PQcx7Teh8u) +- X (Twitter): [x.com/HeyPuter](https://x.com/HeyPuter) +- Reddit: [reddit.com/r/puter/](https://www.reddit.com/r/puter/) +- Mastodon: [mastodon.social/@puter](https://mastodon.social/@puter) +- 安全问题?请联系 [security@puter.com](mailto:security@puter.com) +- 电子邮件维护者 [hi@puter.com](mailto:hi@puter.com) + +我们随时乐意帮助您解答任何问题,欢迎随时联系! + +
+ + +## 许可证 + +本仓库,包括其所有内容、子项目、模块和组件,除非另有明确说明,否则均遵循 [AGPL-3.0](https://github.com/HeyPuter/puter/blob/main/LICENSE.txt) 许可证。 本仓库中包含的第三方库可能受其各自的许可证约束。 + +