Fast, lightweight and Open Source local cloud for your data made in Rust 🦀
Go to file
MedzikUser e50ee66b0e
feat: add cli
Added cli and options --config and --database to pass path to the configuration and database file.
2022-09-21 18:49:06 +02:00
.github/workflows ci: add target i686-unknown-linux-musl 2022-09-21 17:41:40 +02:00
src feat: add cli 2022-09-21 18:49:06 +02:00
.gitignore feat(server): add tls/ssl support 2022-09-19 21:13:59 +02:00
Cargo.lock feat: add cli 2022-09-21 18:49:06 +02:00
Cargo.toml feat: add cli 2022-09-21 18:49:06 +02:00
LICENSE initial commit 2022-04-16 20:19:38 +02:00
README.md feat(server): add tls/ssl support 2022-09-19 21:13:59 +02:00
config.toml feat(server): add tls/ssl support 2022-09-19 21:13:59 +02: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
tables.sql utils (crypto/database): update cryptographic functions/add comments and tests in database 2022-04-18 00:08:52 +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 204
# Generate certificate
openssl req -new -x509 -key cert.key -out cert.pem -days 365