-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloudbaserc.json
31 lines (31 loc) · 911 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
{
"version": "2.0",
"envId": "fscz-faca0",
"$schema": "https://framework-1258016615.tcloudbaseapp.com/schema/latest.json",
"framework": {
"name": "minos",
"plugins": {
"node": {
"use": "@cloudbase/framework-plugin-node",
"inputs": {
"name": "minos",
"path": "/",
"entry": "app.js",
"buildCommand": "npm install --prefer-offline --no-audit --progress=false && npm run build",
"ignore": ["node_modules", "node_modules/**/*", ".git",".github/*","test"],
"servicePaths": {
"/": "/"
},
"bumpVersion": true,
"functionOptions": {
"timeout": 5,
"runtime": "Nodejs12.16",
"envVariables": {
"NODE_ENV": "production"
}
}
}
}
}
}
}