parent
7b7eec2dba
commit
ec2377287e
@ -1,11 +0,0 @@
|
||||
# Roadmap
|
||||
|
||||
## Todo
|
||||
|
||||
- install script
|
||||
|
||||
## Packages
|
||||
|
||||
- https://github.com/fatih/color
|
||||
- https://github.com/manifoldco/promptui
|
||||
- https://github.com/AlecAivazis/survey
|
@ -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