https://github.com/cemoktra/biurs
https://github.com/cemoktra/biurs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cemoktra/biurs
- Owner: cemoktra
- Created: 2023-05-11T15:33:21.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-30T19:33:57.000Z (4 months ago)
- Last Synced: 2025-01-30T20:30:39.201Z (4 months ago)
- Language: Rust
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# biurs
**b**ack **i**t **u**p - written in **rs**
Personal backup toy project exploring gRPC streaming.
## Install
Server: `cargo install biurs-server`Client: `cargo install biurs`
## Config
### Server
A json file containing an array of paths to PEM encoded Ed25519 public keys of clients.```
[
"/path/to/user_1.public",
"/path/to/user_2.public"
]
```### Client
A json file with the following structure:```
{
"private_key": "/path/to/pem/encoded/private/key/of/user",
"folder": [
"/path/to/folders_to_back_up"
]
}
```## Usage
Server: `biurs-server `Client: `biurs backup/restore`
## Status
- [x] authentication
- [x] concurrent execution