feat: recovered Bun function, problem was a appwrite-cli issue

This commit is contained in:
2026-01-23 13:03:08 +01:00
parent 575a06a41b
commit ea7cd0c954
15 changed files with 451 additions and 67 deletions

View File

@@ -41,7 +41,7 @@
"functions": [
{
"$id": "6972ac200017d1159562",
"name": "aemet",
"name": "aemet-node",
"runtime": "node-22",
"specification": "s-1vcpu-512mb",
"execute": [
@@ -57,7 +57,27 @@
"logging": true,
"entrypoint": "dist/main.js",
"commands": "npm install && npm run build",
"path": "functions/aemet-node"
},
{
"$id": "69736073000fadb92a9f",
"name": "aemet",
"runtime": "bun-1.1",
"specification": "s-1vcpu-512mb",
"execute": [
"any"
],
"events": [],
"scopes": [
"users.read"
],
"schedule": "",
"timeout": 15,
"enabled": true,
"logging": true,
"entrypoint": "src/main.ts",
"commands": "bun install",
"path": "functions/aemet"
}
]
}
}