mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
52b6668955
- remove lodash from bower - move all resources to /mirage instead of /app/mirage - update endpoints to use ORM - general cleanup
21 lines
569 B
JavaScript
21 lines
569 B
JavaScript
export default [{
|
|
blogTitle: 'Test Blog',
|
|
blogUrl: 'http://localhost:7357/',
|
|
clientId: 'ghost-admin',
|
|
clientSecret: '1234ClientSecret',
|
|
fileStorage: 'true',
|
|
// these are valid attrs but we want password auth by default in tests
|
|
// ghostAuthId: '1234GhostAuthId',
|
|
// ghostAuthUrl: 'http://devauth.ghost.org:8080',
|
|
internalTags: 'false',
|
|
publicAPI: 'false',
|
|
routeKeywords: {
|
|
tag: 'tag',
|
|
author: 'author',
|
|
page: 'page',
|
|
preview: 'p',
|
|
private: 'private'
|
|
},
|
|
useGravatar: 'true'
|
|
}];
|