-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappwrite.json
77 lines (77 loc) · 2.04 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"projectId": "studyhub",
"projectName": "Study Hub",
"functions": [
{
"$id": "create-chatroom",
"name": "create-chatroom",
"runtime": "python-3.9",
"path": "functions/create-chatroom",
"entrypoint": "src/index.py",
"ignore": [
"__pypackages__"
],
"execute": [],
"events": [],
"schedule": "",
"timeout": 15
},
{
"$id": "cue",
"name": "create-universities-enum",
"runtime": "python-3.9",
"path": "functions/create-universities-enum",
"entrypoint": "src/index.py",
"ignore": [
"__pypackages__"
],
"execute": [],
"events": [],
"schedule": "",
"timeout": 15
},
{
"$id": "openai-bot",
"name": "chat-bot",
"runtime": "python-3.9",
"path": "functions/chat-bot",
"entrypoint": "src/index.py",
"ignore": [
"__pypackages__"
],
"execute": [],
"events": [],
"schedule": "",
"timeout": 15
},
{
"$id": "rtcg",
"name": "rtc-generate",
"runtime": "node-16.0",
"path": "functions/rtc-generate",
"entrypoint": "src/index.js",
"ignore": [
"node_modules",
".npm"
],
"execute": [],
"events": [],
"schedule": "",
"timeout": 15
},
{
"$id": "dec",
"name": "delete-chatroom",
"runtime": "python-3.9",
"path": "functions/delete-chatroom",
"entrypoint": "src/index.py",
"ignore": [
"__pypackages__"
],
"execute": [],
"events": [],
"schedule": "",
"timeout": 15
}
]
}