Files

32 lines
1.4 KiB
Bash

# Stripe Configuration
# Get your keys from https://dashboard.stripe.com/apikeys
STRIPE_SECRET_KEY=sk_live_your_secret_key_here
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_live_your_publishable_key_here
# Stripe Webhook Secret
# Get this from https://dashboard.stripe.com/webhooks after creating an endpoint
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here
# Stripe Price IDs (one per plan duration)
# Create these Products + Prices in your Stripe Dashboard:
# - DashCaddy Premium Monthly ($25/mo)
# - DashCaddy Premium Quarterly ($50/3mo)
# - DashCaddy Premium Semi-Annual ($65/6mo)
# - DashCaddy Premium Annual ($99/yr)
STRIPE_PRICE_MONTHLY=price_your_monthly_price_id
STRIPE_PRICE_QUARTERLY=price_your_quarterly_price_id
STRIPE_PRICE_SEMIANNUAL=price_your_semiannual_price_id
STRIPE_PRICE_YEARLY=price_your_annual_price_id
# Stripe Payment Links (for static export checkout)
# Create these in Stripe Dashboard → Payment Links
# Then paste the URLs here and in src/app/pricing/page.tsx (STRIPE_LINKS)
STRIPE_PAYMENT_LINK_MONTHLY=https://buy.stripe.com/REPLACE_MONTHLY_LINK
STRIPE_PAYMENT_LINK_QUARTERLY=https://buy.stripe.com/REPLACE_QUARTERLY_LINK
STRIPE_PAYMENT_LINK_SEMIANNUAL=https://buy.stripe.com/REPLACE_SEMIANNUAL_LINK
STRIPE_PAYMENT_LINK_ANNUAL=https://buy.stripe.com/REPLACE_ANNUAL_LINK
# App URL
NEXT_PUBLIC_APP_URL=https://dashcaddy.net
NEXT_PUBLIC_LOOKUP_URL=https://licenses.dashcaddy.net/api/checkout/session