mirror of
https://github.com/Chouchen/Shikiryu_Backup.git
synced 2021-06-30 16:02:14 +02:00
Adding configurations docs
This commit is contained in:
16
docs/configuration/backup/files.md
Normal file
16
docs/configuration/backup/files.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# Files backup configuration
|
||||
|
||||
## JSON
|
||||
```
|
||||
"Files": {
|
||||
"files": [
|
||||
"/path/to/file1",
|
||||
"/path/to/file2"
|
||||
]
|
||||
}
|
||||
```
|
||||
## General
|
||||
File path should be absolute
|
||||
|
||||
## Options
|
||||
files (mandatory) = array of file paths
|
||||
25
docs/configuration/backup/mysql.md
Normal file
25
docs/configuration/backup/mysql.md
Normal file
@@ -0,0 +1,25 @@
|
||||
# Mysql backup configuration
|
||||
|
||||
## JSON
|
||||
```
|
||||
"Mysql": {
|
||||
"host" : "mysql address",
|
||||
"login" : "mysql login",
|
||||
"pwd" : "mysql password",
|
||||
"db" : "mysql database",
|
||||
"tables": [
|
||||
""
|
||||
]
|
||||
}
|
||||
```
|
||||
## General
|
||||
You can indicate "*" or nothing into tables to save every tables in the selected database.
|
||||
|
||||
## Options
|
||||
host (mandatory) = mysql host
|
||||
login (mandatory) = mysql login
|
||||
pwd (mandatory) = mysql password
|
||||
db (mandatory) = database where the tables you want to save are in.
|
||||
tables (mandatory) = array of tables
|
||||
|
||||
|
||||
Reference in New Issue
Block a user