You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
backy/README.md

46 lines
1.1 KiB

# Backy - an application to manage backups
This app is in development, and is currently not stable. Expect core functionality to possiblly break.
1 year ago
## Installing
1 year ago
To install:
`go install git.andrewnw.xyz/CyberShell/backy@master`
1 year ago
This assumes you already have a working Go environment, if not please see [this page](https://golang.org/doc/install) first.
You can also download binaries [here](https://git.andrewnw.xyz/CyberShell/backy/releases) and [here](https://github.com/CybersShell/backy/releases).
## Features
- Allows easy configuration of executable commands
- Allows for commands to be run on many hosts over SSH
- Commands can be grouped in list to run in specific order
- Notifications on completion and failure
- Run in cron mode
- For any command, especially backup commands
1 year ago
To run a config:
`backy backup`
Or to use a specific file:
```backy backup -f /path/to/file```
1 year ago
If you leave the config path blank, the following paths will be searched in order:
- `./backy.yml`
1 year ago
- `./backy.yaml`
- `~/.config/backy.yml`
1 year ago
- `~/.config/backy.yaml`
Create a file at `~/.config/backy.yml`.
See the config file in the examples directory to configure it.