Skip to content

Commit 4c93619

Browse files
Create README.he.md
1 parent e58de0d commit 4c93619

File tree

1 file changed

+134
-0
lines changed

1 file changed

+134
-0
lines changed

doc/i18n/README.he.md

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
<h3 align="center"><img width="80" alt="Puter.com,
2+
הענן הפרטי: כל הקבצים, האפליקציות והמשחקים שלך במקום אחד נגיש מכל מקום ובכל זמן." src="https://assets.puter.site/puter-logo.png"></h3>
3+
4+
<h3 align="center" dir="rtl">מערכת ההפעלה של האינטרנט! חינמית, קוד פתוח וניתנת לאחסון עצמאי.</h3>
5+
6+
<p align="center">
7+
<img alt="GitHub גודל ספרית" src="https://img.shields.io/github/repo-size/HeyPuter/puter"> <img alt="GitHub גרסא" src="https://img.shields.io/github/v/release/HeyPuter/puter?label=latest%20version"> <img alt="GitHub רישיון" src="https://img.shields.io/github/license/HeyPuter/puter">
8+
</p>
9+
<p align="center">
10+
<a href="https://puter.com/"><strong>« הדגמה לייב »</strong></a>
11+
<br />
12+
<br />
13+
<a href="https://puter.com">Puter.com</a>
14+
·
15+
<a href="https://docs.puter.com" target="_blank">SDK</a>
16+
·
17+
<a href="https://discord.com/invite/PQcx7Teh8u">Discord</a>
18+
·
19+
<a href="https://www.youtube.com/@EricsPuterVideos">YouTube</a>
20+
·
21+
<a href="https://reddit.com/r/puter">Reddit</a>
22+
·
23+
<a href="https://twitter.com/HeyPuter">X (Twitter)</a>
24+
·
25+
<a href="https://hackerone.com/puter_h1b">Bug Bounty</a>
26+
</p>
27+
28+
<h3 align="center"><img width="800" style="border-radius:5px;" alt="צילום מסך" src="https://assets.puter.site/puter.com-screenshot-3.webp"></h3>
29+
30+
<br/>
31+
32+
## Puter
33+
34+
<div dir="rtl">
35+
<p div="rtl">
36+
מערכת ההפעלה Puter הינה ספרית קוד פתוח, מתקדמת, עשירה בתכנים, מהירה במיוחד וניתנת להרחבה.
37+
אפשר להישתמש ב Puter כ:</p>
38+
<ul>
39+
<li>ענן אישי עם פרטיות מקסימלית, לשמירת הקבצים, האפליקציות והמשחקים שלך במקום מאובטח אחד, נגיש מכל מקום ובכל זמן.</li>
40+
<li>פלטפורמה לבניית ופרסום אתרים, אפליקציות ומשחקים.</li>
41+
<li>אלטרנטיבה ל-Dropbox, Google Drive, OneDrive וכו' עם ממשק מרענן ותכנים חזקים.</li>
42+
<li>סביבה לעבודה מרחוק לשרתים ותחנות עבודה.</li>
43+
<li>פרוייקט ידידותי, קוד פתוח וקהילה ללמידה על פיתוח אינטרנט, פיתוח בענן, מערכות מבוזרות ועוד הרבה!</li>
44+
<ul>
45+
</div>
46+
47+
<br/>
48+
49+
## בוא נתחיל
50+
51+
### 💻 פיתוח מקומי (Localhost)
52+
53+
```bash
54+
git clone https://github.com/HeyPuter/puter
55+
cd puter
56+
npm install
57+
npm start
58+
```
59+
60+
פקודה זו תפעיל את Puter בכתובת http://puter.localhost:4100 (או בפורט הפנוי הבא).
61+
62+
<br/>
63+
64+
### 🐳 Docker
65+
66+
```bash
67+
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
68+
```
69+
70+
<br/>
71+
72+
### 🐙 Docker Compose
73+
74+
#### Linux/macOS
75+
76+
```bash
77+
mkdir -p puter/config puter/data
78+
sudo chown -R 1000:1000 puter
79+
wget https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml
80+
docker compose up
81+
```
82+
83+
<br/>
84+
85+
#### Windows
86+
87+
```powershell
88+
mkdir -p puter
89+
cd puter
90+
New-Item -Path "puter\config" -ItemType Directory -Force
91+
New-Item -Path "puter\data" -ItemType Directory -Force
92+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml" -OutFile "docker-compose.yml"
93+
docker compose up
94+
```
95+
96+
<br/>
97+
98+
### ☁️ Puter.com
99+
100+
מערכת ההפעלה Puter זמינה כשירות אחסון ב- [**puter.com**](https://puter.com).
101+
102+
<br/>
103+
104+
## דרישות מערכת
105+
106+
- **מערכות הפעלה:** Linux, macOS, Windows
107+
- **RAM:** לפחות 2GB, מומלץ 4GB
108+
- **מקום פנוי בדיסק:** 1GB
109+
- **Node.js:** גרסה 16+ (מומלץ גרסה 22+)
110+
- **npm:** הגרסה היציבה האחרונה
111+
112+
<br/>
113+
114+
## תמיכה
115+
116+
צור קשר עם המפתחים והקהילה דרך הערוצים הבאים:
117+
118+
- דיווח על באג או בקשה לתוכן? אנא [פתח פניה](https://github.com/HeyPuter/puter/issues/new/choose).
119+
- Discord: [discord.com/invite/PQcx7Teh8u](https://discord.com/invite/PQcx7Teh8u)
120+
- X (Twitter): [x.com/HeyPuter](https://x.com/HeyPuter)
121+
- Reddit: [reddit.com/r/puter](https://www.reddit.com/r/puter.)
122+
- Mastodon: [mastodon.social/@puter](https://mastodon.social/@puter)
123+
- בעיות אבטחה? [[email protected]](mailto:[email protected])
124+
- שלח אימייל למפתחים ב [[email protected]](mailto:[email protected])
125+
126+
אנחנו תמיד שמחים לעזור עם כל שאלה שיש. אל תהסס לשאול!
127+
128+
<br/>
129+
130+
## רישיון
131+
132+
ספריה זו, כולל כל התכנים שלה, תתי הפרויקטים, המודולים והרכיבים שלה, מורשית תחת [AGPL-3.0](https://github.com/HeyPuter/puter/blob/main/LICENSE.txt) אלא אם נאמר אחרת במפורש. לספריות צד שלישי הכלולות בספרייה זו עשויות להיות רישיונות משלהן.
133+
134+
<br/>

0 commit comments

Comments
 (0)