This commit is contained in:
2026-06-25 18:24:29 +08:00
commit a1190d7d9a
90 changed files with 5459 additions and 0 deletions

17
cloudbaserc.json Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "2.0",
"envId": "cloud1-d0gmb6bjde8af3266",
"functionRoot": "cloudfunctions",
"functions": [
{ "name": "login", "timeout": 20, "runtime": "Nodejs18.15", "installDependency": true },
{ "name": "dogManage", "timeout": 20, "runtime": "Nodejs18.15", "installDependency": true },
{ "name": "walkSave", "timeout": 20, "runtime": "Nodejs18.15", "installDependency": true },
{ "name": "walkManual", "timeout": 20, "runtime": "Nodejs18.15", "installDependency": true },
{ "name": "getDogDetail", "timeout": 20, "runtime": "Nodejs18.15", "installDependency": true },
{ "name": "getHistory", "timeout": 20, "runtime": "Nodejs18.15", "installDependency": true },
{
"name": "sendReminder", "timeout": 30, "runtime": "Nodejs18.15", "installDependency": true,
"triggers": [{ "name": "dailyReminder", "type": "timer", "config": "0 0 19 * * * *" }]
}
]
}