-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (31 loc) · 1.2 KB
/
Copy path.env.example
File metadata and controls
37 lines (31 loc) · 1.2 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
# ============================================
# AI Blog Engine - Environment Configuration
# ============================================
# ------------------
# Site Configuration
# ------------------
# The base URL of your deployed site (no trailing slash)
VITE_SITE_URL=https://yourdomain.com
# Your blog's display name
VITE_SITE_NAME=AI Blog Engine
# ----------------------
# AI Features (Optional)
# ----------------------
# These are only required if you want to use the AI image generation feature
# The blog engine works perfectly fine without these keys
# OpenAI API Key
# Get yours at: https://platform.openai.com/api-keys
# Used for generating image prompts and quality assessment
OPENAI_API_KEY=sk-your-openai-api-key-here
# Google Gemini API Key
# Get yours at: https://ai.google.dev/
# Used for generating images from prompts
GEMINI_API_KEY=your-gemini-api-key-here
# ----------------------
# Notes
# ----------------------
# - Copy this file to .env (git-ignored)
# - Never commit your .env file with real API keys
# - The VITE_ prefix makes variables available in the browser
# - AI keys are only used in build scripts, not in the browser
# - You can leave AI keys empty if you plan to use manual images