-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappwrite.json
31 lines (31 loc) · 865 Bytes
/
appwrite.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
{
"projectId": "github-edu-appwrite-stream-demo",
"functions": [
{
"$id": "url-shortener",
"name": "url-shortener",
"runtime": "node-22",
"execute": [
"any"
],
"events": [],
"scopes": [
"databases.write",
"databases.read",
"collections.write",
"collections.read",
"attributes.write",
"documents.write",
"documents.read"
],
"schedule": "",
"timeout": 15,
"enabled": true,
"logging": true,
"entrypoint": "src/main.js",
"commands": "npm install",
"path": "functions/url-shortener",
"specification": "s-1vcpu-512mb"
}
]
}