-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (36 loc) · 1.25 KB
/
.env.example
File metadata and controls
42 lines (36 loc) · 1.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
# ============================================================================
# Environment Configuration for Python Training
# ============================================================================
# SECURITY: This file is a TEMPLATE. Create a copy named ".env" and fill with
# your actual keys. Never commit .env to GitHub!
#
# DO THIS:
# 1. Copy this file: cp .env.example .env
# 2. Fill in YOUR actual API keys in .env
# 3. .env is in .gitignore (never pushed to GitHub for safety)
# 4. Load in Python with: from dotenv import load_dotenv
#
# ============================================================================
# AI / LLM APIs (Day 11)
OPENAI_API_KEY=sk-your-key-here
DEEPSEEK_API_KEY=your-deepseek-key-here
GROQ_API_KEY=your-groq-key-here
GOOGLE_API_KEY=your-google-api-key-here
# Local AI (LM Studio)
LM_STUDIO_URL=http://localhost:1234/v1
LM_STUDIO_MODEL=local-model
# Database (Day 6 & 9)
DATABASE_URL=sqlite:///training.db
DATABASE_USER=student
DATABASE_PASSWORD=not_a_real_password
# Email/SMTP (Day 8 - Optional)
SMTP_SERVER=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your-email@gmail.com
SMTP_PASSWORD=your-app-specific-password
# Flask Debug (Only for development!)
FLASK_ENV=development
FLASK_DEBUG=1
# Custom Settings
DEBUG_MODE=True
LOG_LEVEL=INFO