-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeystone.js
61 lines (49 loc) · 1.57 KB
/
keystone.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Simulate config options from your production environment by
// customising the .env file in your project's root folder.
require('dotenv').config();
const staticRoot = process.env.STATIC_URL || '';
// Require keystone
var keystone = require('keystone');
// Initialise Keystone with your project's configuration.
// See http://keystonejs.com/guide/config for available options
// and documentation.
keystone.init({
'name': '30songs',
'brand': '30songs',
'sass': 'public',
'compress': true,
'static': 'public',
'favicon': 'public/favicon.ico',
'views': 'templates/views',
'view engine': 'jade',
'static root': staticRoot,
'auto update': true,
'mongo': process.env.MONGODB_URI || 'mongodb://localhost/30songs',
'session': true,
'session store': 'mongo',
'auth': true,
'user model': 'User',
});
// Load your project's Models
keystone.import('models');
// Setup common locals for your templates. The following are required for the
// bundled templates and layouts. Any runtime locals (that should be set uniquely
// for each request) should be added to ./routes/middleware.js
keystone.set('locals', {
_: require('lodash'),
env: keystone.get('env'),
utils: keystone.utils,
editable: keystone.content.editable,
asset: path => staticRoot + path,
});
// Load your project's Routes
keystone.set('routes', require('./routes'));
// Configure the navigation bar in Keystone's Admin UI
keystone.set('nav', {
songs: 'songs',
pages: 'pages',
links: 'nav-links',
users: 'users',
});
// Start Keystone to connect to your database and initialise the web server
keystone.start();