-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (17 loc) · 1.67 KB
/
Copy path.env.example
File metadata and controls
25 lines (17 loc) · 1.67 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
# ── EIRION Environment Variables ──────────────────────────────────────────────
# Copy this file to .env and fill in your values.
# Never commit .env to version control.
# ─────────────────────────────────────────────────────────────────────────────
# ── Required ─────────────────────────────────────────────────────────────────
# Google Gemini API key (get from https://aistudio.google.com/app/apikey)
GEMINI_API_KEY=your_google_gemini_api_key_here
# ── Backend ──────────────────────────────────────────────────────────────────
# SQLite database path (relative to backend/ directory)
DATABASE_URL=file:./dev.db
# JWT signing secret — generate with: python -c "import secrets; print(secrets.token_hex(32))"
JWT_SECRET=change_this_to_a_random_256bit_secret_string
# Comma-separated CORS origins allowed to call the API
ALLOWED_ORIGINS=http://localhost:5173,http://localhost:3000
# ── Frontend (Vite) ───────────────────────────────────────────────────────────
# Backend API base URL — must match the backend server address
VITE_API_URL=http://localhost:8000