-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathenv.example
More file actions
76 lines (62 loc) · 2.25 KB
/
Copy pathenv.example
File metadata and controls
76 lines (62 loc) · 2.25 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
# ============================================
# PitchLense Environment Variables
# ============================================
# ============================================
# AI & Analysis APIs
# ============================================
# Google Gemini AI (Required for AI analysis and investment recommendations)
GEMINI_API_KEY=your_gemini_api_key_here
# Financial Modeling Prep (Required for market data)
FMP_API_KEY=your_fmp_api_key_here
# ============================================
# Google Cloud Platform
# ============================================
# Google Cloud Storage bucket for file uploads
BUCKET=your_gcs_bucket_name
GCS_BUCKET=your_gcs_bucket_name
# Google Cloud Project ID
GOOGLE_CLOUD_PROJECT=your_project_id
# Cloud Run URL for AI processing backend
CLOUD_RUN_URL=your_cloud_run_endpoint_url
# Path to service account key JSON
GOOGLE_APPLICATION_CREDENTIALS=path/to/service-account-key.json
# ============================================
# Database Configuration (MySQL/Cloud SQL)
# ============================================
DB_USER=your_database_user
DB_PASSWORD=your_database_password
DB_HOST=your_database_host
DB_NAME=pitchlense
DB_PORT=3306
DB_SSL=true
# Cloud SQL Unix Socket (alternative to TCP connection)
# INSTANCE_UNIX_SOCKET=/cloudsql/PROJECT_ID:REGION:INSTANCE_NAME
# ============================================
# Authentication
# ============================================
# JWT secret key (CHANGE THIS IN PRODUCTION!)
JWT_SECRET=your_secure_random_jwt_secret_here
# ============================================
# Email Configuration (Gmail Integration)
# ============================================
EMAIL_USERNAME=connect@amanulla.in
EMAIL_PASSWORD=your_email_password
# IMAP Configuration (Incoming emails)
IMAP_USER=your_email@gmail.com
IMAP_PASSWORD=your_imap_app_password
IMAP_HOST=imap.gmail.com
IMAP_PORT=993
# SMTP Configuration (Outgoing emails)
SMTP_USER=your_email@gmail.com
SMTP_PASSWORD=your_smtp_app_password
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
# Alternative: Hostinger Email (for hackathon demo)
# IMAP_HOST=imap.hostinger.com
# SMTP_HOST=smtp.hostinger.com
# SMTP_PORT=465
# ============================================
# Application Settings
# ============================================
NODE_ENV=production
PORT=3000