-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.js
86 lines (84 loc) · 2.05 KB
/
config.example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// # ┌────────────── second (optional)
// # │ ┌──────────── minute
// # │ │ ┌────────── hour
// # │ │ │ ┌──────── day of month
// # │ │ │ │ ┌────── month
// # │ │ │ │ │ ┌──── day of week
// # │ │ │ │ │ │
// # │ │ │ │ │ │
// # * * * * * *
// expression for cron
module.exports = {
options: {
cron_exp: false // valid cron expression for node-cron or false to run once.
},
backups: [
{
source: {
type: "mysql",
host: "127.0.0.1",
port: "3306",
username: "root",
password: "password",
databases: ["demo", "test"]
},
destinations: [
{
type: "file",
path: "./backups/mysql/",
name: ".gzip", //name of file with .gzip extension
name: db => {
return db + "aaa.gzip";
},
zip_password: "test"
},
{
type: "aws-s3",
path: "/backups/mysql/",
name: "a.gzip",
bucket: "swiftchat.io.dev",
accessKeyId: "test", // remove to use instance profiles
secretAccessKey: "test", // remove to use instance profiles
acl: "private",
zip_password: "test"
}
]
},
{
source: {
type: "redis",
host: "127.0.0.1",
port: "6379",
databases: ["0"]
},
destinations: [
{
type: "file",
path: "./backups/mysql/",
name: db => {
return db + "aaa.rdb";
},
zip_password: "test"
}
]
},
{
source: {
type: "mongo",
host: "127.0.0.1",
port: "27017",
username: "",
password: "",
databases: ["demo"]
},
destinations: [
{
type: "file",
path: "./backups/mysql/",
name: "a.gzip",
zip_password: "test"
}
]
}
]
};