forked from hassan689/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
101 lines (78 loc) · 4.1 KB
/
.env.example
File metadata and controls
101 lines (78 loc) · 4.1 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# ============================================================================
# Environment Configuration Template
# ============================================================================
# Copy this file to .env and replace placeholder values with your actual keys.
# Never commit the .env file to version control.
# ============================================================================
# ============================================================================
# STRIPE PAYMENT CONFIGURATION (Required)
# ============================================================================
# Get keys from: https://dashboard.stripe.com/apikeys
# Publishable key (safe for client-side)
STRIPE_PUBLISHABLE_KEY=pk_test_your_publishable_key_here
# Secret key (server-side only, never expose in client code)
STRIPE_SECRET_KEY=sk_test_your_secret_key_here
# ============================================================================
# FIREBASE CONFIGURATION (Required)
# ============================================================================
# Get from: Firebase Console > Project Settings
# https://console.firebase.google.com/
# Core Firebase Settings
FIREBASE_PROJECT_ID=your-project-id
FIREBASE_MESSAGING_SENDER_ID=123456789012
FIREBASE_STORAGE_BUCKET=your-project-id.appspot.com
FIREBASE_AUTH_DOMAIN=your-project-id.firebaseapp.com
# Platform-Specific API Keys
FIREBASE_WEB_API_KEY=AIzaSyXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
FIREBASE_ANDROID_API_KEY=AIzaSyXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
FIREBASE_IOS_API_KEY=AIzaSyXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
FIREBASE_MACOS_API_KEY=AIzaSyXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
FIREBASE_WINDOWS_API_KEY=AIzaSyXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# Platform-Specific App IDs
FIREBASE_WEB_APP_ID=1:123456789012:web:abcdef1234567890
FIREBASE_ANDROID_APP_ID=1:123456789012:android:abcdef1234567890
FIREBASE_IOS_APP_ID=1:123456789012:ios:abcdef1234567890
FIREBASE_MACOS_APP_ID=1:123456789012:macos:abcdef1234567890
FIREBASE_WINDOWS_APP_ID=1:123456789012:windows:abcdef1234567890
# Analytics Measurement IDs
FIREBASE_WEB_MEASUREMENT_ID=G-XXXXXXXXXX
FIREBASE_WINDOWS_MEASUREMENT_ID=G-XXXXXXXXXX
# Bundle IDs
FIREBASE_IOS_BUNDLE_ID=com.example.connect
FIREBASE_MACOS_BUNDLE_ID=com.example.connect
# ============================================================================
# GOOGLE MAPS CONFIGURATION (Required)
# ============================================================================
# Get from: https://console.cloud.google.com/google/maps-apis/credentials
# Enable: Maps SDK for Android, Maps SDK for iOS, Places API, Geocoding API
GOOGLE_MAPS_API_KEY=AIzaSyXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# ============================================================================
# OPENAI CONFIGURATION (Required)
# ============================================================================
# Get from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-proj-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# Optional: Custom API endpoint
OPENAI_BASE_URL=https://api.openai.com/v1/chat/completions
# ============================================================================
# HUGGING FACE CONFIGURATION (Optional)
# ============================================================================
# Get from: https://huggingface.co/settings/tokens
# Only needed if using Hugging Face models
HUGGINGFACE_API_TOKEN=hf_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# Optional: Custom API endpoint
HUGGINGFACE_BASE_URL=https://api-inference.huggingface.co/models
# ============================================================================
# APPLICATION SETTINGS
# ============================================================================
# Application package name
APP_PACKAGE_NAME=com.example.connect
# Default notification channel
DEFAULT_NOTIFICATION_CHANNEL_ID=default_channel
# ============================================================================
# POINTS SYSTEM CONFIGURATION
# ============================================================================
# Values in decimal format (e.g., 0.10 = 10%)
# Platform commission (default: 10%)
PLATFORM_COMMISSION_RATE=0.10
# Provider payout (default: 90%)
PROVIDER_PAYOUT_RATE=0.90