-
-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathconfig.json
More file actions
36 lines (36 loc) · 737 Bytes
/
config.json
File metadata and controls
36 lines (36 loc) · 737 Bytes
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
{
"development": {
"username": "root",
"password": "secret_pass",
"database": "database_development",
"host": "127.0.0.1",
"dialect": "mysql",
"pool": {
"maxConnections": 1,
"some": {
"other": {
"nested": {
"object": "here"
}
}
}
}
},
"env": {
"use_env_variable": "postgresql://[user[:password]@][netlocation][:port][/dbname]"
},
"test": {
"username": "root",
"password": null,
"database": "database_test",
"host": "127.0.0.1",
"dialect": "mysql"
},
"production": {
"username": "root",
"password": null,
"database": "database_production",
"host": "127.0.0.1",
"dialect": "mysql"
}
}