diff --git a/src/lib/stores/marketplace.ts b/src/lib/stores/marketplace.ts
index 9433a3f82c..94074bc7c7 100644
--- a/src/lib/stores/marketplace.ts
+++ b/src/lib/stores/marketplace.ts
@@ -737,6 +737,134 @@ export const marketplace: MarketplaceTemplate[] = [
type: 'text'
}
]
+ },
+ {
+ icon: 'icon-stripe',
+ id: 'subscriptions-with-stripe',
+ name: 'Subscriptions with Stripe',
+ tagline: 'Receive recurring card payments and grant subscribers extra permissions.',
+ permissions: ['any'],
+ events: [],
+ cron: '',
+ timeout: 15,
+ usecases: ['Utilities'],
+ runtimes: [
+ {
+ name: 'node-18.0',
+ commands: 'npm install',
+ entrypoint: 'src/main.js',
+ providerRootDirectory: 'node/subscriptions-with-stripe'
+ }
+ ],
+ instructions: `For documentation and instructions check out file.`,
+ vcsProvider: 'github',
+ providerRepositoryId: 'templates',
+ providerOwner: 'appwrite',
+ providerBranch: 'main',
+ variables: [
+ {
+ name: 'APPWRITE_API_KEY',
+ description: `The API Key to talk to Appwrite backend 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: 'STRIPE_SECRET_KEY',
+ description: `Secret for sending requests to the Stripe API. Learn more.`,
+ placeholder: 'sk_test_51J...',
+ required: true,
+ type: 'password'
+ },
+ {
+ name: 'STRIPE_WEBHOOK_SECRET',
+ description: `Secret used to validate the Stripe Webhook signature. Learn more.`,
+ placeholder: 'whsec_...',
+ required: true,
+ type: 'password'
+ }
+ ]
+ },
+ {
+ icon: 'icon-stripe',
+ id: 'payments-with-stripe',
+ name: 'Payments with Stripe',
+ tagline: 'Receive card payments and store paid orders.',
+ permissions: ['any'],
+ events: [],
+ cron: '',
+ timeout: 15,
+ usecases: ['Utilities'],
+ runtimes: [
+ {
+ name: 'node-18.0',
+ commands: 'npm install && npm run setup',
+ entrypoint: 'src/main.js',
+ providerRootDirectory: 'node/payments-with-stripe'
+ }
+ ],
+ instructions: `For documentation and instructions check out file.`,
+ vcsProvider: 'github',
+ providerRepositoryId: 'templates',
+ providerOwner: 'appwrite',
+ providerBranch: 'main',
+ variables: [
+ {
+ name: 'APPWRITE_API_KEY',
+ description: `The API Key to talk to Appwrite backend 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: 'STRIPE_SECRET_KEY',
+ description: `Secret for sending requests to the Stripe API. Learn more.`,
+ placeholder: 'sk_test_51J...',
+ required: true,
+ type: 'password'
+ },
+ {
+ name: 'STRIPE_WEBHOOK_SECRET',
+ description: `Secret used to validate the Stripe Webhook signature. Learn more.`,
+ placeholder: 'whsec_...',
+ required: true,
+ type: 'password'
+ },
+ {
+ name: 'APPWRITE_DATABASE_ID',
+ description: `The ID of the database to store paid orders. Learn more.`,
+ value: 'orders',
+ placeholder: 'orders',
+ required: false,
+ type: 'text'
+ },
+ {
+ name: 'APPWRITE_COLLECTION_ID',
+ description: `The ID of the collection to store paid orders. Learn more.`,
+ value: 'orders',
+ placeholder: 'orders',
+ required: false,
+ type: 'text'
+ }
+ ]
}
];