-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathappwrite.json
60 lines (60 loc) · 1.7 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
{
"projectId": "playground-for-flutter",
"projectName": "Playground for Flutter",
"databases": [
{
"$id": "default",
"name": "Default",
"$createdAt": "2023-04-14T20:34:09.843+00:00",
"$updatedAt": "2023-04-14T20:34:09.843+00:00"
}
],
"collections": [
{
"$id": "usernames",
"$permissions": [
"create(\"any\")",
"read(\"any\")",
"update(\"any\")",
"delete(\"any\")"
],
"databaseId": "default",
"name": "Usernames",
"enabled": true,
"documentSecurity": false,
"attributes": [
{
"key": "username",
"type": "string",
"status": "available",
"required": true,
"array": false,
"size": 50,
"default": null
}
],
"indexes": []
}
],
"buckets": [
{
"$id": "testBucket",
"$createdAt": "2023-04-14T20:33:53.174+00:00",
"$updatedAt": "2023-04-14T20:33:59.949+00:00",
"$permissions": [
"create(\"any\")",
"read(\"any\")",
"update(\"any\")",
"delete(\"any\")"
],
"fileSecurity": false,
"name": "Test Bucket",
"enabled": true,
"maximumFileSize": 30000000,
"allowedFileExtensions": [],
"compression": "none",
"encryption": true,
"antivirus": true
}
]
}