Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 1 month ago
JSON representation

☁️ Fast, lightweight and Open Source local cloud for your data made in Rust 🦀

Awesome Lists containing this project

README

        


HomeDisk Icon



 

 

 

 

## 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
```