-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
35 lines (32 loc) · 1.22 KB
/
index.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
/**
* This file kicks off the build process for the application. It also attaches
* the Lore singleton to the window, so you can access it from the command line
* in case you need to play with it or want to manually kick off actions or check
* the reducer state (through `lore.actions.xyz`, `lore.reducers.xyz`,
* `lore.models.xyz`, etc.)
**/
import lore from 'lore';
import _ from 'lodash';
// Allows you to access your lore app globally as well as from within
// the console. Remove this line if you don't want to be able to do that.
window.lore = lore;
// Summon the app!
lore.summon({
hooks: {
auth: require('lore-hook-auth'),
actions: require('lore-hook-actions'),
bindActions: require('lore-hook-bind-actions'),
collections: require('lore-hook-collections'),
connections: require('lore-hook-connections'),
connect: require('lore-hook-connect'),
dialog: require('lore-hook-dialog'),
dialogs: require('lore-hook-dialogs-bootstrap'),
models: require('lore-hook-models'),
react: require('lore-hook-react'),
reducers: require('lore-hook-reducers'),
redux: _.extend(require('lore-hook-redux'), {
dependencies: ['reducers', 'auth']
}),
router: require('lore-hook-router')
}
});