mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
8f17c1683d
refs https://github.com/TryGhost/Toolbox/issues/214 - Having this config for test environment allows to pre-populate default settings values in the settings table - Right now the default-settings.json is an exact copy of the original "/data/schema/default-settings/default-settings.json". Having a starter file as an exact copy, allows to track the differences between environments as they are introduced easier
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"url": "http://127.0.0.1:2369",
|
|
"database": {
|
|
"client": "sqlite3",
|
|
"connection": {
|
|
"filename": "/tmp/ghost-test.db"
|
|
},
|
|
"useNullAsDefault": true,
|
|
"debug": false
|
|
},
|
|
"server": {
|
|
"port": 2369
|
|
},
|
|
"logging": {
|
|
"level": "fatal"
|
|
},
|
|
"spam": {
|
|
"user_login": {
|
|
"minWait": 600000,
|
|
"maxWait": 604800000,
|
|
"freeRetries": 3
|
|
},
|
|
"user_reset": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries": 4
|
|
},
|
|
"global_reset": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries":4
|
|
},
|
|
"global_block": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries":4
|
|
},
|
|
"private_block": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries":99
|
|
}
|
|
},
|
|
"privacy": {
|
|
"useTinfoil": true,
|
|
"useStructuredData": true
|
|
},
|
|
"useMinFiles": false,
|
|
"paths": {
|
|
"fixtures": "test/utils/fixtures/fixtures",
|
|
"defaultSettings": "test/utils/fixtures/default-settings.json",
|
|
"urlCache": "test/utils/fixtures/urls"
|
|
}
|
|
}
|