-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkeystone.js
90 lines (73 loc) · 2.77 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
84
85
86
87
88
89
90
// Simulate config options from your production environment by
// customising the .env file in your project's root folder.
require('dotenv').config();
// 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 MongoStore=require('connect-mongodb-session')(session);
var mongoDBUrl = 'mongodb://javlonbek:[email protected]:27017,fintech-shard-00-01-ahsxv.mongodb.net:27017,fintech-shard-00-02-ahsxv.mongodb.net:27017/spring2019?ssl=true&replicaSet=fintech-shard-0&authSource=admin&retryWrites=true&w=majority';
//mongoDBUrl='mongodb+srv://javlonbek:[email protected]/test?retryWrites=true';
//var mongoDBUrl='mongodb+srv://javlonbek:[email protected]/spring2019?retryWrites=true&w=majority';
keystone.init({
'name': 'IUT',
'brand': 'IUT',
'less': 'public',
'static': 'public',
'favicon': 'public/favicon.ico',
'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,
'mongo': mongoDBUrl,
'cookie secret': 'JavlonbekIUT',
'session': true,
'session store': 'mongo',
// 'session store':function(session){
// var MongoStore=require('connect-mongodb-session')(session);
// var store = new MongoStore({
// uri:mongoDBUrl,
// collection:'mySessions'
// });
// store.on('error', function(error) {
// console.log("Error on connecting to mongostore:",error);
// });
// return store;
// },
'auth': true,
'user model': 'User',
'auto update': true
});
// 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
//
keystone.set('locals', {
_: require('lodash'),
env: keystone.get('env'),
utils: keystone.utils,
editable: keystone.content.editable,
});
// Load your project's Routes
keystone.set('routes', require('./routes'));
// Configure the navigation bar in Keystone's Admin UI
keystone.set('nav', {
users: 'users',
sections: 'sections',
groups: 'groups',
courses: 'courses',
students: 'students',
teachers: 'teachers'
});
// Start Keystone to connect to your database and initialise the web server
//require('./store-faces');
console.log('keystone starting');
keystone.start();