Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions example-blog/appwrite.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@
"array": false,
"size": 255,
"default": null
},
{
"key": "imageurl",
"type": "string",
"status": "available",
"required": false,
"array": false,
"format": "url",
"default": null
}
],
"indexes": [
Expand Down
2 changes: 2 additions & 0 deletions example-blog/src/env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ interface ImportMetaEnv {
readonly PUBLIC_APPWRITE_PROJECT_ID: string;
readonly PUBLIC_APPWRITE_DB_ID: string;
readonly PUBLIC_APPWRITE_BLOG_ID: string;
readonly PUBLIC_APPWRITE_COMMENTS_ID: string;
readonly PUBLIC_APPWRITE_BUCKET_ID: string;
}