Skip to content

Commit b737570

Browse files
authored
Merge pull request #703 from FabioDePalma/ita
added readme file in Italian
2 parents 45d35ee + aa610be commit b737570

File tree

2 files changed

+133
-0
lines changed

2 files changed

+133
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,4 @@ This repository, including all its contents, sub-projects, modules, and componen
142142
- [Spanish / Español](https://github.com/HeyPuter/puter/blob/main/doc/i18n/README.es.md)
143143
- [Turkish / Türkçe](https://github.com/HeyPuter/puter/blob/main/doc/i18n/README.tr.md)
144144
- [Vietnamese / Tiếng Việt](https://github.com/HeyPuter/puter/blob/main/doc/i18n/README.vi.md)
145+
- [Italian / Italiano](https://github.com/HeyPuter/puter/blob/main/doc/i18n/README.it.md)

doc/i18n/README.it.md

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
<h3 align="center"><img width="80" alt="Puter.com, The Personal Cloud Computer: All your files, apps, and games in one place accessible from anywhere at any time." src="https://assets.puter.site/puter-logo.png"></h3>
2+
3+
<h3 align="center">Il sistema operativo di Internet! Gratuito, Open-Source e Auto-Hostabile.</h3>
4+
5+
<p align="center">
6+
<img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/HeyPuter/puter"> <img alt="GitHub Release" src="https://img.shields.io/github/v/release/HeyPuter/puter?label=latest%20version"> <img alt="GitHub License" src="https://img.shields.io/github/license/HeyPuter/puter">
7+
</p>
8+
<p align="center">
9+
<a href="https://puter.com/"><strong>« LIVE DEMO »</strong></a>
10+
<br />
11+
<br />
12+
<a href="https://puter.com">Puter.com</a>
13+
·
14+
<a href="https://docs.puter.com" target="_blank">SDK</a>
15+
·
16+
<a href="https://discord.com/invite/PQcx7Teh8u">Discord</a>
17+
·
18+
<a href="https://www.youtube.com/@EricsPuterVideos">YouTube</a>
19+
·
20+
<a href="https://reddit.com/r/puter">Reddit</a>
21+
·
22+
<a href="https://twitter.com/HeyPuter">X (Twitter)</a>
23+
·
24+
<a href="https://hackerone.com/puter_h1b">Bug Bounty</a>
25+
</p>
26+
27+
<h3 align="center"><img width="800" style="border-radius:5px;" alt="screenshot" src="https://assets.puter.site/puter.com-screenshot-3.webp"></h3>
28+
29+
<br/>
30+
31+
## Puter
32+
33+
Puter è un sistema operativo di Internet avanzato e open-source, progettato per essere ricco di funzionalità, eccezionalmente veloce e altamente estensibile. Puter può essere utilizzato come:
34+
35+
- Un cloud personale che tiene conto della privacy per conservare tutti i file, le app e i giochi in un luogo sicuro, accessibile da qualsiasi luogo e in qualsiasi momento.
36+
- Una piattaforma per creare e pubblicare siti web, app e giochi.
37+
- Un'alternativa a Dropbox, Google Drive, OneDrive, ecc. con un'interfaccia nuova e funzioni potenti.
38+
- Un ambiente desktop remoto per server e workstation.
39+
- Un progetto e una comunità open-source amichevole per imparare lo sviluppo web, il cloud computing, i sistemi distribuiti e molto altro ancora!
40+
41+
<br/>
42+
43+
## Getting Started
44+
45+
46+
### 💻 Local Development
47+
48+
```bash
49+
git clone https://github.com/HeyPuter/puter
50+
cd puter
51+
npm install
52+
npm start
53+
```
54+
55+
In questo modo Puter verrà avviato all'indirizzo http://puter.localhost:4100 (o alla prossima porta disponibile).
56+
57+
<br/>
58+
59+
### 🐳 Docker
60+
61+
62+
```bash
63+
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
64+
```
65+
66+
<br/>
67+
68+
69+
### 🐙 Docker Compose
70+
71+
72+
#### Linux/macOS
73+
```bash
74+
mkdir -p puter/config puter/data
75+
sudo chown -R 1000:1000 puter
76+
wget https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml
77+
docker compose up
78+
```
79+
<br/>
80+
81+
#### Windows
82+
83+
84+
```powershell
85+
mkdir -p puter
86+
cd puter
87+
New-Item -Path "puter\config" -ItemType Directory -Force
88+
New-Item -Path "puter\data" -ItemType Directory -Force
89+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml" -OutFile "docker-compose.yml"
90+
docker compose up
91+
```
92+
<br/>
93+
94+
### ☁️ Puter.com
95+
96+
Puter è disponibile come servizio in hosting su [**puter.com**](https://puter.com).
97+
98+
<br/>
99+
100+
## Requisiti di Sistema
101+
102+
- **Sistema Operativo:** Linux, macOS, Windows
103+
- **RAM:** 2GB minimi (4GB raccomandati)
104+
- **Spazio su Disco:** 1GB liberi
105+
- **Node.js:** Versione 16+ (Versione 22+ raccomandati)
106+
- **npm:** Ultima versione stabile
107+
108+
<br/>
109+
110+
## Supporto
111+
112+
Collegatevi con i maintainers e la comunità attraverso questi canali:
113+
114+
- Segnalazione di bug o richiesta di funzionalità? Perfavore [aprire una issue](https://github.com/HeyPuter/puter/issues/new/choose).
115+
- Discord: [discord.com/invite/PQcx7Teh8u](https://discord.com/invite/PQcx7Teh8u)
116+
- X (Twitter): [x.com/HeyPuter](https://x.com/HeyPuter)
117+
- Reddit: [reddit.com/r/puter/](https://www.reddit.com/r/puter/)
118+
- Mastodon: [mastodon.social/@puter](https://mastodon.social/@puter)
119+
- Problemi di sicurezza? [[email protected]](mailto:[email protected])
120+
- Email maintainers a [[email protected]](mailto:[email protected])
121+
122+
Siamo sempre felici di aiutarvi con qualsiasi domanda. Non esitate a chiedere!
123+
124+
<br/>
125+
126+
127+
## Licenza
128+
129+
Questo repository, compresi tutti i suoi contenuti, sottoprogetti, moduli e componenti, è concesso in licenza [AGPL-3.0](https://github.com/HeyPuter/puter/blob/main/LICENSE.txt), a meno che non sia esplicitamente indicato diversamente. Le librerie di terze parti incluse in questo repository possono essere soggette alle loro licenze.
130+
131+
<br/>
132+

0 commit comments

Comments
 (0)