Homepage: AI-powered hero, 9 feature cards (AI Intent Router, MCP Server, Security Center, Fleet Management, Service Discovery, Plugin System), expanded comparison table (7→13 rows), Smart Wizard in How It Works Features page: Complete rewrite — 8 feature sections led by AI-Powered Self-Hosting, Free vs Premium comparison grid Pricing page: Fixed broken Stripe checkout (was 503 stub). Subscribe button now uses Stripe Payment Links. Core tier lists all 18 features. All 7 docs pages: Updated to reflect current architecture (AI, MCP, Security Center, SDK, Caddyfile-as-Code, Service Discovery, etc.) About page: AI-Native value prop, updated tech stack, by-the-numbers Navbar: Fixed broken #anchor links → proper routes, added DashCaddy logo AppShowcase: 50+ → 76+ templates Logo: Dark + light versions deployed, wired into navbar/footer/favicon
31 lines
1.3 KiB
Bash
31 lines
1.3 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
|