-
Notifications
You must be signed in to change notification settings - Fork 1
/
.yo-rc.json
47 lines (47 loc) · 1.21 KB
/
.yo-rc.json
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
{
"generator-material-app": {
"appname": "appointerx",
"registerRoutesFile": "server/routes.js",
"routesNeedle": "// Insert routes below",
"insertRoutes": true,
"routesBase": "/api/",
"pluralizeRoutes": true,
"insertSockets": true,
"registerSocketsFile": "server/config/socketio.js",
"socketsNeedle": "// Insert sockets below",
"modulesNeedle": "// Add modules below",
"features": {
"auth": true,
"socketio": true
},
"angularModules": [
"ngCookies",
"ngResource",
"ngSanitize",
"ngMessages",
"ngMaterial",
"ui.router",
"btford.socket-io",
"appointerxApp.lodash",
"appointerxApp.mainMenu",
"appointerxApp.io",
"appointerxApp.socket",
"appointerxApp.auth",
"appointerxApp.admin",
"appointerxApp.account",
"appointerxApp.main"
],
"componentsDirectory": "client/app/components/",
"routeDirectory": "client/app/",
"directiveDirectory": "client/app/components",
"filterDirectory": "client/app/components",
"serviceDirectory": "client/app/components",
"basePath": "client",
"moduleName": "",
"extensions": [
"js",
"html",
"scss"
]
}
}