Fast, lightweight and Open Source local cloud for your data made in Rust 🦀
Go to file
renovate[bot] 812136a86e fix(deps): update rust crate uuid to 1.2 2022-10-10 02:47:36 +00:00
.devcontainer chore: configure github codespace 2022-09-26 19:41:37 +00:00
.github/workflows chore(deps): update softprops/action-gh-release digest to cd28b0f 2022-09-26 07:07:10 +00:00
sql feat: create storage directory if doesn't exists 2022-09-21 20:53:22 +02:00
src feat: add support for disable https to run http server 2022-09-26 20:04:28 +00:00
.gitignore chore: configure github codespace 2022-09-26 19:41:37 +00:00
Cargo.lock fix(deps): update rust crate uuid to 1.2 2022-10-10 02:47:36 +00:00
Cargo.toml fix(deps): update rust crate uuid to 1.2 2022-10-10 02:47:36 +00:00
LICENSE initial commit 2022-04-16 20:19:38 +02:00
README.md chore: configure github codespace 2022-09-26 19:41:37 +00:00
config.toml feat: add support for disable https to run http server 2022-09-26 20:04:28 +00:00
renovate.json refactor: rewrite 2022-09-14 19:51:12 +02:00
rustfmt.toml chore(rustfmt): update config 2022-08-15 21:34:23 +02:00

README.md

HomeDisk Icon

       

Documentation

👨‍💻 Compile server

cargo build --release

Now you can run server using command ./target/release/homedisk.

🔒 Generate development TLS certificate

# Generate private key
openssl genrsa -out cert.key 2048
# Generate certificate
openssl req -new -x509 -key cert.key -out cert.pem -days 365