mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
15d9a77092
* moved `server/config` to `shared/config` * updated config import paths in server to use shared * updated config import paths in frontend to use shared * updated config import paths in test to use shared * updated config import paths in root to use shared * trigger regression tests * of course the rebase broke tests
27 lines
500 B
JSON
27 lines
500 B
JSON
{
|
|
"url": "http://localhost:2368",
|
|
"database": {
|
|
"client": "sqlite3",
|
|
"connection": {
|
|
"filename": "content/data/ghost-dev.db"
|
|
},
|
|
"debug": false
|
|
},
|
|
"paths": {
|
|
"contentPath": "content/"
|
|
},
|
|
"privacy": {
|
|
"useRpcPing": false,
|
|
"useUpdateCheck": true
|
|
},
|
|
"useMinFiles": false,
|
|
"caching": {
|
|
"theme": {
|
|
"maxAge": 0
|
|
},
|
|
"admin": {
|
|
"maxAge": 0
|
|
}
|
|
}
|
|
}
|