-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappwrite.config.json
More file actions
42 lines (42 loc) · 1.27 KB
/
Copy pathappwrite.config.json
File metadata and controls
42 lines (42 loc) · 1.27 KB
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
{
"projectId": "6a572c3f0008220bd0cf",
"endpoint": "https://fra.cloud.appwrite.io/v1",
"functions": [
{
"$id": "ai-orchestrator",
"name": "LifeInbox AI Orchestrator",
"runtime": "node-22",
"execute": ["users"],
"events": [],
"schedule": "",
"timeout": 60,
"enabled": true,
"logging": true,
"entrypoint": "src/main.js",
"commands": "npm install",
"path": "functions/ai-orchestrator",
"buildSpecification": "s-2vcpu-2gb",
"runtimeSpecification": "s-0.5vcpu-512mb",
"deploymentRetention": 0,
"scopes": ["databases.read", "collections.read", "documents.read", "documents.write", "files.read"]
},
{
"$id": "ops",
"name": "LifeInbox Ops",
"runtime": "node-22",
"execute": ["users"],
"events": [],
"schedule": "0 3 * * *",
"timeout": 60,
"enabled": true,
"logging": true,
"entrypoint": "src/main.js",
"commands": "npm install",
"path": "functions/ops",
"buildSpecification": "s-2vcpu-2gb",
"runtimeSpecification": "s-0.5vcpu-512mb",
"deploymentRetention": 0,
"scopes": ["databases.read", "collections.read", "documents.read", "documents.write", "files.read", "files.write", "users.write"]
}
]
}