-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotshot.config.json
47 lines (47 loc) · 1.06 KB
/
hotshot.config.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
{
"registry": "https://github.com/a4arpon/hot-shot/registry.json",
"projectType": "ts",
"contains": {
"mods": [
{
"type": "router",
"name": "auth",
"path": "./src/mods/auth-mod",
"contains": ["router", "controller", "services"],
"services": ["auth.services"]
},
{
"type": "router",
"name": "blogs",
"path": "./src/mods/blogs-mod",
"contains": ["router", "controller", "services"],
"services": ["blogs.services", "comments.services"]
}
],
"useGuards": [
{
"name": "author",
"path": "./src/use-guards/author.guard"
},
{
"name": "reader",
"path": "./src/use-guards/reader.guard"
}
],
"queues": [
{
"core": "Redis",
"engine": "BullMQ",
"name": "notification",
"path": "./src/queues/notification.worker"
}
],
"cacheDrivers": [
{
"core": "Redis",
"name": "blogs",
"path": "./src/cache-drivers/blogs.cache"
}
]
}
}