-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
29 lines (23 loc) · 1.21 KB
/
env.example
File metadata and controls
29 lines (23 loc) · 1.21 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
29
# Firebase Configuration
# Get these from your Firebase Console: https://console.firebase.google.com/
# Project Settings > General > Your apps > Firebase SDK snippet > Config
VITE_FIREBASE_API_KEY=YOUR_FIREBASE_API_KEY
VITE_FIREBASE_AUTH_DOMAIN=YOUR_PROJECT_ID.firebaseapp.com
VITE_FIREBASE_PROJECT_ID=YOUR_PROJECT_ID
VITE_FIREBASE_STORAGE_BUCKET=YOUR_PROJECT_ID.firebasestorage.app
VITE_FIREBASE_MESSAGING_SENDER_ID=YOUR_MESSAGING_SENDER_ID
VITE_FIREBASE_APP_ID=YOUR_APP_ID
# Stripe Configuration
# Get these from your Stripe Dashboard: https://dashboard.stripe.com/apikeys
# Test Mode Keys (use for development)
VITE_STRIPE_TEST_PUBLISHABLE_KEY=pk_test_YOUR_TEST_PUBLISHABLE_KEY
VITE_STRIPE_TEST_ACCOUNT_ID=acct_YOUR_TEST_ACCOUNT_ID
VITE_STRIPE_TEST_INVOICE_TEMPLATE=inrtem_YOUR_TEST_INVOICE_TEMPLATE
# Live Mode Keys (use for production)
VITE_STRIPE_LIVE_PUBLISHABLE_KEY=pk_live_YOUR_LIVE_PUBLISHABLE_KEY
VITE_STRIPE_LIVE_ACCOUNT_ID=acct_YOUR_LIVE_ACCOUNT_ID
VITE_STRIPE_LIVE_INVOICE_TEMPLATE=inrtem_YOUR_LIVE_INVOICE_TEMPLATE
# Environment Mode (test or live)
VITE_STRIPE_ENVIRONMENT=test
# Stripe Proxy URL (your Firebase Function URL)
VITE_STRIPE_PROXY_URL=https://us-central1-YOUR_PROJECT_ID.cloudfunctions.net/stripeProxy