# Integration Test Secrets # Copy this file to secrets.env and fill in your actual values # The secrets.env file is gitignored and will NOT be committed # Cloudflare Tunnel (for Stripe webhook delivery) # Get your tunnel token from: https://dash.cloudflare.com/ # Configure tunnel to proxy to http://api:8080 CLOUDFLARE_TUNNEL_TOKEN=your_tunnel_token_here # Stripe (test mode credentials) # Get test credentials from: https://dashboard.stripe.com/test/apikeys STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key_here STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here # Stripe Price IDs - Monthly Subscriptions STRIPE_PRICE_ID_MONTHLY_USD=price_your_monthly_usd_price_id STRIPE_PRICE_ID_MONTHLY_EUR=price_your_monthly_eur_price_id # Stripe Price IDs - Yearly Subscriptions STRIPE_PRICE_ID_YEARLY_USD=price_your_yearly_usd_price_id STRIPE_PRICE_ID_YEARLY_EUR=price_your_yearly_eur_price_id # Stripe Price IDs - Visionary (Lifetime) STRIPE_PRICE_ID_VISIONARY_USD=price_your_visionary_usd_price_id STRIPE_PRICE_ID_VISIONARY_EUR=price_your_visionary_eur_price_id # Stripe Price IDs - Gifts (Visionary) STRIPE_PRICE_ID_GIFT_VISIONARY_USD=price_your_gift_visionary_usd_price_id STRIPE_PRICE_ID_GIFT_VISIONARY_EUR=price_your_gift_visionary_eur_price_id # Stripe Price IDs - Gifts (1 Month) STRIPE_PRICE_ID_GIFT_1_MONTH_USD=price_your_gift_1_month_usd_price_id STRIPE_PRICE_ID_GIFT_1_MONTH_EUR=price_your_gift_1_month_eur_price_id # Stripe Price IDs - Gifts (1 Year) STRIPE_PRICE_ID_GIFT_1_YEAR_USD=price_your_gift_1_year_usd_price_id STRIPE_PRICE_ID_GIFT_1_YEAR_EUR=price_your_gift_1_year_eur_price_id # Tenor API Key (for GIF search tests) # Get your API key from: https://developers.google.com/tenor/guides/quickstart TENOR_API_KEY=your_tenor_api_key_here