-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (23 loc) · 1.16 KB
/
Copy path.env.example
File metadata and controls
28 lines (23 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# OpenAI API Configuration
# Get your API key from: https://platform.openai.com/api-keys
EXPO_PUBLIC_OPENAI_API_KEY=sk-your-openai-api-key-here
# Supabase Configuration
EXPO_PUBLIC_SUPABASE_URL=your-supabase-url-here
EXPO_PUBLIC_SUPABASE_ANON_KEY=your-supabase-anon-key-here
# Stripe Configuration
# Get your keys from: https://dashboard.stripe.com/apikeys
EXPO_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test-your-stripe-publishable-key-here
# RevenueCat Configuration
# Get your public API key from: https://app.revenuecat.com/
# Navigate to: Project Settings → API Keys → Public app-specific API keys
EXPO_PUBLIC_REVENUECAT_API_KEY=your-revenuecat-public-api-key-here
# App URL Configuration
# Used for auth callbacks and payment redirects
# Development: Use exp://localhost:8081 or your local IP
# Production: Use your app's public URL (e.g., https://yourapp.com)
EXPO_PUBLIC_APP_URL=exp://localhost:8081
# Stripe Cancellation Mode
# Used by Supabase Edge Function: stripe-cancel-subscription
# - "immediate": Cancel subscriptions immediately (for testing/TestFlight)
# - (unset or any other value): Cancel at end of billing period (production standard)
# STRIPE_CANCEL_MODE=immediate