Fast, lightweight and Open Source local cloud for your data made in Rust 🦀
Go to file
MedzikUser bcdd5ffa4c
update
2022-06-11 10:19:47 +02:00
.github/workflows comment code 2022-06-08 19:08:06 +02:00
core update 2022-06-11 10:19:47 +02:00
database update 2022-06-09 00:02:20 +02:00
server update 2022-06-11 10:19:47 +02:00
types update 2022-06-11 10:19:47 +02:00
website fix(deps): update material-ui monorepo to v5.8.3 2022-06-08 05:31:01 +00:00
.gitignore update 2022-06-09 00:02:20 +02:00
Cargo.lock update 2022-06-11 10:19:47 +02:00
Cargo.toml chore (database): move `utils/database` to `database` 2022-04-23 20:44:02 +02:00
LICENSE initial commit 2022-04-16 20:19:38 +02:00
README.md update 2022-06-09 00:02:20 +02:00
config.toml update 2022-06-11 10:19:47 +02:00
renovate.json initial commit 2022-04-16 20:19:38 +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 cloud server

docs license badge code size badge total lines badge Build release binaries (and publish them if this is a tag)

👨‍💻 Building

Server

Requirements

  • Rust

To build run the command: cargo build --release

The compiled binary can be found in ./target/release/cloud

Website

Requirements

  • Node.js
  • pnpm

Run these commands to build:

  • Go to directory ./website
  • Install dependencies: pnpm install
  • Build website: pnpm run build
  • Export website to static HTML files: pnpm run export (Optional)

If you exported the page to HTML files, they are located in the ./out directory, if not, you can start the site with pnpm run start

🖴 Creating tables in a SQLite database

Requirements

  • SQLite3

Run command sqlite3 homedisk.db < tables.sql to create SQLite database