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.
27 lines
655 B
27 lines
655 B
3 years ago
|
# From `0.x` to `1.0`
|
||
4 years ago
|
|
||
|
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
|
||
|
```
|
||
|
|
||
4 years ago
|
Other than the config file there is a new `-v, --verbose` flag which shows the output of native commands, which are now hidden by default.
|
||
|
|
||
4 years ago
|
> :ToCPrevNext
|