Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/M3DZIK/HomeDisk
☁️ Fast, lightweight and Open Source local cloud for your data made in Rust 🦀
https://github.com/M3DZIK/HomeDisk
api api-server cloud database design disk free-software hacktoberfest opensource rest-api restapi rust rust-lang rustlang self-hosted selfhosted sql sqlite sqlite3
Last synced: 3 months ago
JSON representation
☁️ Fast, lightweight and Open Source local cloud for your data made in Rust 🦀
- Host: GitHub
- URL: https://github.com/M3DZIK/HomeDisk
- Owner: M3DZIK
- License: gpl-3.0
- Archived: true
- Created: 2022-04-16T18:18:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-28T01:13:36.000Z (about 2 years ago)
- Last Synced: 2024-04-17T16:13:04.789Z (7 months ago)
- Topics: api, api-server, cloud, database, design, disk, free-software, hacktoberfest, opensource, rest-api, restapi, rust, rust-lang, rustlang, self-hosted, selfhosted, sql, sqlite, sqlite3
- Language: Rust
- Homepage: homedisk-doc.vercel.app
- Size: 483 KB
- Stars: 33
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Documentation
### 👨💻 Compile server
```bash
cargo build --release
```Now you can run server using command `./target/release/homedisk`.
### 🔒 Generate development TLS certificate
```bash
# Generate private key
openssl genrsa -out cert.key 2048
# Generate certificate
openssl req -new -x509 -key cert.key -out cert.pem -days 365
```