-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
executable file
·43 lines (39 loc) · 1.12 KB
/
config.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
var root = 'http://10.0.1.3:3000/';
module.exports = {
oAuth : 'https://auth.sellyx.com/',
app : {
name : 'splash_server',
machine : 'SELLYX_SPLASH_STATIC',
keys : ['secret1', 'secret2', 'secret3']
},
paths : {
root : root,
controllers : __dirname + '/controllers/',
datafiles : __dirname + '/datafiles/',
components : __dirname + '/components/',
libraries : __dirname + '/libraries/',
engine : __dirname + '/libraries/engine/',
helpers : __dirname + '/libraries/helpers/',
api : __dirname + '/libraries/api',
locales : __dirname + '/assets/locales/be/',
models : __dirname + '/models/',
semis : __dirname + '/semis/',
img : root + 'dist/css/img/',
vendor : root + 'dist/js/vendor/',
bower : root + 'dist/js/vendor/bower_components/',
src : {
css : '../assets/css/',
js : '../assets/js/',
locales : '../assets/locales/fe/',
},
dist : {
css : root + 'dist/css/',
js : {
main : root + 'dist/js/',
pieces : root + 'dist/js/pieces/',
templates : root + 'dist/js/templates/',
},
locales : root + 'dist/locales/'
}
}
}