mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 21:24:11 +01:00
27 lines
526 B
Markdown
27 lines
526 B
Markdown
|
# 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
|