We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e42f983 + de36a9c commit 86f8243Copy full SHA for 86f8243
README.md
@@ -144,7 +144,33 @@ To show a guide how to restore your backup use the *--restore* option.
144
145
## Configuration Example
146
147
-Simple configuration example:
+Simple configuration example in JSON:
148
+
149
+```json
150
+{
151
+ "verbose":true,
152
+ "backups":[
153
+ {
154
+ "name":"myAppDB",
155
+ "source":{
156
+ "type":"mysqldump",
157
+ "options":{
158
+ "databases":"mydbname",
159
+ "user":"user.name",
160
+ "password":"topsecret"
161
+ }
162
+ },
163
+ "target":{
164
+ "dirname":"backup",
165
+ "filename":"mysql-%Y%m%d-%H%i.sql",
166
+ "compress":"bzip2"
167
168
169
+ ]
170
+}
171
+```
172
173
+Simple configuration example in XML:
174
175
```xml
176
<?xml version="1.0" encoding="UTF-8"?>
0 commit comments