-
Notifications
You must be signed in to change notification settings - Fork 9
/
cloudbaserc.json
42 lines (42 loc) · 991 Bytes
/
cloudbaserc.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
{
"envId": "{{env.ENV_ID}}",
"version": "2.0",
"$schema": "https://framework-1258016615.tcloudbaseapp.com/schema/latest.json",
"functions": [
{
"name": "sosf",
"memorySize": 128,
"timeout": 5,
"runtime": "Nodejs10.15",
"installDependency": true,
"handler": "index.main"
}
],
"framework": {
"name": "sosf",
"plugins": {
"func": {
"use": "@cloudbase/framework-plugin-function",
"inputs": {
"servicePaths": {
"sosf": "/"
},
"functionRootPath": "./platforms/cloudbase",
"functions": [
{
"name": "sosf",
"memorySize": 128,
"timeout": 5,
"runtime": "Nodejs10.15",
"installDependency": true,
"envVariables": {
"ENV_ID": "{{env.ENV_ID}}"
},
"handler": "index.main"
}
]
}
}
}
}
}