This commit is contained in:
cupcakearmy 2021-04-17 17:04:43 +02:00
parent 7b7eec2dba
commit ec2377287e
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
4 changed files with 30 additions and 13 deletions

View File

@ -1,11 +0,0 @@
# Roadmap
## Todo
- install script
## Packages
- https://github.com/fatih/color
- https://github.com/manifoldco/promptui
- https://github.com/AlecAivazis/survey

View File

@ -1,7 +1,7 @@
[Home](/)
[Quick Start](/quick)
<!-- [Installation](/installation) -->
[Configuration](/config)
[Upgrade](/upgrade)
> :Collapse label=Locations
>

View File

@ -1,9 +1,11 @@
# `autorestic`
# autorestic
High backup level CLI utility for [restic](https://restic.net/).
Autorestic is a wrapper around the amazing [restic](https://restic.net/). While being amazing the restic cli can be a bit overwhelming and difficult to manage if you have many different location that you want to backup to multiple locations. This utility is aimed at making this easier 🙂
> If you are coming from `0.x` see the [upgrade guide](/upgrade).
## 🌈 Features
- YAML config files, no CLI

26
docs/markdown/upgrade.md Normal file
View File

@ -0,0 +1,26 @@
# Update
## From `0.x` to `1.0`
Most of the config file is remained compatible, however to clean up the backends custom environment variables were moved from the root object to an `env` object.
```yaml
# Before
remote:
type: b2
path: bucket:path/to/backup
key: some random encryption key
B2_ACCOUNT_ID: id
B2_ACCOUNT_KEY: key
# After
remote:
type: b2
path: bucket:path/to/backup
key: some random encryption key
env:
B2_ACCOUNT_ID: id
B2_ACCOUNT_KEY: key
```
> :ToCPrevNext