-
Notifications
You must be signed in to change notification settings - Fork 8
/
cloudbaserc.js
49 lines (49 loc) · 1.03 KB
/
cloudbaserc.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
44
45
46
47
48
49
module.exports = {
envId: 'tcb-demo-10cf5b',
framework: {
plugins: {
client: {
use: '@cloudbase/framework-plugin-website',
inputs: {
buildCommand: 'npm run build',
outputPath: 'build',
cloudPath: '/online-meeting/'
}
},
db: {
use: '@cloudbase/framework-plugin-database',
inputs: {
collections: [
{
collectionName: 'sessions',
aclTag: 'READONLY'
}
]
}
},
server: {
use: '@cloudbase/framework-plugin-function',
inputs: {
functionRootPath: 'functions',
functions: [
{
name: 'clear-session'
},
{
name: 'get-session'
},
{
name: 'join-session'
},
{
name: 'create-session'
},
{
name: 'update-ticket'
}
]
}
}
}
}
};