You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Make autorestic configuration file path configurable
This commit updates the autorestic configuration file path to use the `autorestic_config_file` variable instead of hardcoding `~/.autorestic.yml`. This change allows for greater flexibility and customization in specifying the location of the configuration file.
Copy file name to clipboardexpand all lines: README.md
+7-1
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,13 @@ autorestic_config:
62
62
B2_ACCOUNT_KEY: Key
63
63
```
64
64
65
-
The autorestic YAML configuration to be placed into the `~/.autorestic.yml` file. See the [autorestic documentation](https://autorestic.vercel.app/config) for details on the YAML configuration.
65
+
See the [autorestic documentation](https://autorestic.vercel.app/config) for details on the YAML configuration.
66
+
67
+
```yaml
68
+
autorestic_config_file: ~/.autorestic.yml
69
+
```
70
+
71
+
The autorestic YAML configuration to be placed into the `~/.autorestic.yml` file.
0 commit comments