-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathapp.js
35 lines (27 loc) · 896 Bytes
/
app.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
var apos = require('apostrophe')({
shortName: 'apostrophesandbox',
title: 'Apostrophe Sandbox 2.0.0',
demo: true,
bundles: ['apostrophe-blog'],
// These are the modules we want to bring into the project.
modules: {
'apostrophe-templates': { viewsFolderFallback: __dirname + '/views' },
'apostrophe-express': {
session: {
secret: 'ksajhfkdsfha43fahif3a8asdfkyfsd7f'
}
},
// Standard Apostrophe Modules
'apostrophe-assets': {},
'apostrophe-blog': {},
'apostrophe-blog-pages': {},
'apostrophe-blog-widgets': {},
'apostrophe-users': {},
// Apostrophe Sandbox (as-) specific modules
'as-helpers': {},
'as-two-column-block-widgets': {},
// REMOVE ME IMMEDIATELY if you are not running a public demo
// that should let EVERYBODY be INSTANTLY loggged in AS ADMIN!
'demo-autologin': {},
}
});