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

https://github.com/alvaro17f/passback

A tool to backup your keepass database
https://github.com/alvaro17f/passback

zig

Last synced: about 1 month ago
JSON representation

A tool to backup your keepass database

Awesome Lists containing this project

README

          

# Passback

![](vhs/passback.gif)

`passback` is a tool to backup your keepass database.

> :warning: **Work in Progress**: This project is currently under development. Some features may not be complete and may change in the future.

## Installation

To install passback, you can clone the repository and compile the source code:

```sh
git clone https://github.com/alvaro17f/passback.git
cd passback
odin build .
```

then move the binary to a directory in your PATH:

```sh
sudo mv passback
```

### NixOS

#### Run

To run passback, you can use the following command:

```sh
nix run github:alvaro17f/passback
```

If you need to pass arguments, you can use the following command:

```sh
nix run github:alvaro17f/passback -- help
```

#### Flake

Add passback to your flake.nix file:

```nix
{
inputs = {
passback.url = "github:alvaro17f/passback";
};
}
```

then include it in your system configuration:

```nix
{ inputs, pkgs, ... }:
{
home.packages = [
inputs.passback.packages.${pkgs.system}.default
];
}
```

## Usage

`passback -d -p `

```sh
***************************************************
PASSBACK - A tool to backup your keepass database
***************************************************
-d : USB devices to backup to
-p : Path to keepass db (default is ~/keepass)
-h, help : Display this help message
-v, version : Display the current version
```

## License

PASSBACK is distributed under the MIT license. See the LICENSE file for more information.