-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeystone.js
83 lines (63 loc) · 2.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Simulate config options from your production environment by
// customising the .env file in your project's root folder.
require('dotenv').load();
// Require keystone
var keystone = require('keystone');
var handlebars = require('express-handlebars');
// Initialise Keystone with your project's configuration.
// See http://keystonejs.com/guide/config for available options
// and documentation.
var mongoName = process.env.MONGO_DB_NAME || 'swift-how';
var mongoPath = 'mongodb://localhost/' + mongoName;
if (process.env.MONGO_PORT_27017_TCP_ADDR && process.env.MONGO_PORT_27017_TCP_PORT) {
var path = process.env.MONGO_PORT_27017_TCP_ADDR + ":" + process.env.MONGO_PORT_27017_TCP_PORT;
mongoPath = 'mongodb://' + path + '/' + mongoName;
}
keystone.init({
'name': 'Swift How',
'brand': 'Swift How',
'sass': 'public',
'static': 'public',
'favicon': 'public/favicon.png',
'views': 'templates/views',
'view engine': 'hbs',
'custom engine': handlebars.create({
layoutsDir: 'templates/views/layouts',
partialsDir: 'templates/views/partials',
defaultLayout: 'default',
helpers: new require('./templates/views/helpers')(),
extname: '.hbs'
}).engine,
'auto update': true,
'mongo': mongoPath,
'session': false,
'auth': true,
'user model': 'User',
'cookie secret': process.env.COOKIE_SECRET || 'your-cookie-secret',
});
// 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('underscore'),
env: keystone.get('env'),
utils: keystone.utils,
editable: keystone.content.editable
});
// Load your project's Routes
keystone.set('routes', require('./routes'));
// Setup common locals for your emails. The following are required by Keystone's
// default email templates, you may remove them if you're using your own.
// Configure the navigation bar in Keystone's Admin UI
keystone.set('nav', {
'enquiries': 'enquiries',
'links': 'links',
'apps': ['apps', 'app-tags'],
'users': 'users',
'news': 'news',
'timelines': 'timelines'
});
// Start Keystone to connect to your database and initialise the web server
keystone.start();