Update README.md
This commit is contained in:
parent
6062ed12c1
commit
68b5c23457
16
README.md
16
README.md
|
@ -1,13 +1,6 @@
|
|||
# 🌥️ Litecloud
|
||||
|
||||
Your files, your server, your privacy. Litecloud is a lightweight, secure cloud storage solution that you can host yourself. Upload, organize, and share files without compromising your privacy or depending on big tech companies.
|
||||
|
||||
## What makes Litecloud special?
|
||||
|
||||
**Privacy-first**: Your files are encrypted with military-grade AES-256-GCM encryption before they ever touch the disk
|
||||
**Lightning fast**: Built with Rust for maximum performance and safety
|
||||
**Developer-friendly**: Clean REST API lets you build custom apps and integrations
|
||||
**Dead simple**: One Docker command and you're running your own cloud
|
||||
Litecloud is a blazing fast, stupidly secure cloud storage application. Built on Rust and featuring industry standard encryption for all data that hits the server. While still at an early development stage, we consider the app ready for deployment for single user/small group
|
||||
|
||||
## Features at a glance
|
||||
|
||||
|
@ -29,10 +22,11 @@ Your files, your server, your privacy. Litecloud is a lightweight, secure cloud
|
|||
- **React + Vite + TypeScript**: Modern, type-safe user interface, with all the added benefits of vite
|
||||
- **Tailwind CSS**: Clean, responsive design
|
||||
|
||||
|
||||
## Why Rust? Why not just use Node.js?
|
||||
|
||||
Great question! Rust seemed to *just work* for this scenario:
|
||||
Great question! While i have considered Node, rust seemed a much more reasonable choice for this scenario, given that, at capacity, we hope that the app won't budge even if a hundred users upload a bunch of big files all at the same time.
|
||||
|
||||
Here are the main points for why I chose it:
|
||||
|
||||
- **Memory safety without garbage collection** — no mysterious crashes or memory leaks, hence safer handling of encrypted files.
|
||||
- **Insanely good concurrency** — handle thousands of simultaneous uploads without breaking a sweat
|
||||
|
@ -52,7 +46,7 @@ We take this *security* thing quite seriously:
|
|||
|
||||
## API-first design
|
||||
|
||||
Everything you can do in the web interface, you can do programmatically. The entire Litecloud feature set is available under `/api`, so you can:
|
||||
Everything you can do in the web interface, you can do programmatically. The entire Litecloud feature set is available under the `/api` route, so you can:
|
||||
|
||||
- Build a mobile app that syncs with your Litecloud instance
|
||||
- Create automated backup scripts
|
||||
|
|
Loading…
Reference in a new issue