-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
47 lines (46 loc) · 1.11 KB
/
config.example.json
File metadata and controls
47 lines (46 loc) · 1.11 KB
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
{
"databases": [
{
"name": "databaseOne",
"connection": "mysql://connection",
"erd": true,
"ignoreTables": [
"_migrations"
]
},
{
"name": "databaseTwo",
"envConfig": {
"path": "",
"connection": "mysq://{DB_USER}:{DB_PASSWORD}@{DB_HOST}:{DB_PORT}/{DB_NAME}"
},
"erd": true,
"ignoreTables": [
"_migrations"
]
},
{
"name": "databaseThree",
"jsonConfig": {
"path": "path/to/config.json",
"connection": "mysql://{database.user}:{database.password}"
},
"erd": true,
"ignoreTables": [
"_migrations"
]
}
],
"templaters": [
{
"html": {
"template": "path/to/template"
}
},
"json",
"md",
"confluence-wiki",
"confluence-store"
],
"output": "/path/to/save"
}