From 0e4ca9fbb015d80f541b2c5181dffaf2a12df1ca Mon Sep 17 00:00:00 2001 From: Bradley Schofield Date: Fri, 3 May 2024 16:39:59 +0900 Subject: [PATCH] Update marketplace.ts --- src/lib/stores/marketplace.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/lib/stores/marketplace.ts b/src/lib/stores/marketplace.ts index 32b0ebbff..581da5d26 100644 --- a/src/lib/stores/marketplace.ts +++ b/src/lib/stores/marketplace.ts @@ -1380,6 +1380,29 @@ export const marketplace: MarketplaceTemplate[] = [ placeholder: 'd1efb...aec35', required: true, type: 'password' + }, + { + name: 'APPWRITE_API_KEY', + description: `The API Key to authenticate against Appwrite's server APIs. Learn more.`, + value: '', + placeholder: 'd1efb...aec35', + required: true, + type: 'password' + }, + { + name: 'APPWRITE_ENDPOINT', + description: `The URL endpoint of the Appwrite server. Learn more.`, + value: 'https://cloud.appwrite.io/v1', + placeholder: 'https://cloud.appwrite.io/v1', + required: false, + type: 'url' + }, + { + name: 'APPWRITE_BUCKET_ID', + description: `The ID of the bucket where audio is stored. Learn more.`, + placeholder: 'generated_speech', + required: true, + type: 'text' } ] },