mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
docs
This commit is contained in:
parent
7b7eec2dba
commit
ec2377287e
11
ROADMAP.md
11
ROADMAP.md
@ -1,11 +0,0 @@
|
||||
# Roadmap
|
||||
|
||||
## Todo
|
||||
|
||||
- install script
|
||||
|
||||
## Packages
|
||||
|
||||
- https://github.com/fatih/color
|
||||
- https://github.com/manifoldco/promptui
|
||||
- https://github.com/AlecAivazis/survey
|
@ -1,7 +1,7 @@
|
||||
[Home](/)
|
||||
[Quick Start](/quick)
|
||||
<!-- [Installation](/installation) -->
|
||||
[Configuration](/config)
|
||||
[Upgrade](/upgrade)
|
||||
|
||||
> :Collapse label=Locations
|
||||
>
|
||||
|
@ -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
26
docs/markdown/upgrade.md
Normal 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
|
Loading…
Reference in New Issue
Block a user