### Applying Database Migrations (bash) Source: https://github.com/epicweb-dev/epic-stack-with-stripe/blob/main/README.md This command is used to apply necessary database changes, specifically adding a 'stripeId' column to the User table. It utilizes the Prisma CLI to run pending migrations defined in the project. ```bash npx prisma migrate dev ``` -------------------------------- ### Configuring Stripe Environment Variables (env) Source: https://github.com/epicweb-dev/epic-stack-with-stripe/blob/main/README.md This snippet shows the required environment variables for configuring the Stripe integration. It includes placeholders for product IDs, the secret key, and payment link URLs, which must be obtained from the Stripe Dashboard. ```env # Stripe Configuration STRIPE_BASIC_PRODUCT="prod_..." # Your Basic Plan product ID from Stripe STRIPE_PREMIUM_PRODUCT="prod_..." # Your Premium Plan product ID from Stripe STRIPE_SECRET_KEY="sk_test_..." # Your Stripe secret key STRIPE_BASIC_PAYMENT_LINK="https://..." # Your Basic Plan payment link STRIPE_PREMIUM_PAYMENT_LINK="https://..." # Your Premium Plan payment link ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.