-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
44 lines (37 loc) · 1.29 KB
/
env.example
File metadata and controls
44 lines (37 loc) · 1.29 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
# WordPress Site Analyzer - Environment Configuration
# Copy this file to .env and fill in your actual values
# Server Configuration
PORT=3000
# Email Configuration (SMTP)
# Gmail Configuration
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_SECURE=false
SMTP_USER=your-email@gmail.com
SMTP_PASS=your-app-password
SMTP_FROM=WordPress Analyzer <your-email@gmail.com>
# Outlook/Hotmail Configuration (Alternative)
# SMTP_HOST=smtp-mail.outlook.com
# SMTP_PORT=587
# SMTP_SECURE=false
# SMTP_USER=your-email@outlook.com
# SMTP_PASS=your-password
# SMTP_FROM=WordPress Analyzer <your-email@outlook.com>
# Custom SMTP Configuration (Alternative)
# SMTP_HOST=your-smtp-server.com
# SMTP_PORT=587
# SMTP_SECURE=false
# SMTP_USER=your-username
# SMTP_PASS=your-password
# SMTP_FROM=WordPress Analyzer <your-email@yourdomain.com>
# PageSpeed Insights API Key
# Get your API key from: https://console.cloud.google.com/
# 1. Create/select a project
# 2. Enable "PageSpeed Insights API"
# 3. Create credentials (API Key)
PSI_API_KEY=your-pagespeed-insights-api-key-here
# Email Security Notes:
# - For Gmail: Use App Passwords (not your regular password)
# - For Outlook: May need to enable "Less secure app access"
# - For custom SMTP: Use your provider's specific settings
# - SMTP_SECURE=true for port 465, false for ports 587/25