mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
7d3e8fa8a9
refs #6982 - add defaults.json - add overrides.json - add env specific default values - add nconf wrapper in /config - add config utils in /config/utils.js [ci skip]
18 lines
365 B
JSON
18 lines
365 B
JSON
{
|
|
"url": "http://127.0.0.1:2369",
|
|
"server": {
|
|
"port": 2369
|
|
},
|
|
"database": {
|
|
"client": "mysql",
|
|
"connection": {
|
|
"host" : "127.0.0.1",
|
|
"user" : "root",
|
|
"password" : "",
|
|
"database" : "ghost_testing",
|
|
"charset" : "utf8"
|
|
}
|
|
},
|
|
"logging": false
|
|
}
|