forked from appwrite/demos-for-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.json
26 lines (26 loc) · 852 Bytes
/
functions.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
[
{
"env": "node-14",
"name": "Hello World (Node.js)",
"path": "./nodejs/hello-world/function.tar.gz",
"expectedOutput": "Hello World, I'm an Appwrite cloud function written in Node.js."
},
{
"env": "php-7.4",
"name": "Hello World (PHP)",
"path": "./php/hello-world/function.tar.gz",
"expectedOutput": "Hello World, I'm an Appwrite cloud function written in PHP."
},
{
"env": "pyhton-3.8",
"name": "Hello World (Python)",
"path": "./python/hello-world/function.tar.gz",
"expectedOutput": "Hello World, I'm an Appwrite cloud function written in Python."
},
{
"env": "php-7.4",
"name": "Welcome Email",
"path": "./php/welcome-email/function.tar.gz",
"expectedOutput": "mail sent succefully"
}
]