-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
17 lines (13 loc) · 801 Bytes
/
env.example
File metadata and controls
17 lines (13 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# env.example - Environment variables for AI Interview Assistant
# Copy this file to .env and fill in your actual values.
# DO NOT commit your actual .env file to version control.
# OpenAI API Key
OPENAI_API_KEY="your_openai_api_key_goes_here"
# Database URL for the main application (FastAPI)
# Example for MySQL: mysql+pymysql://user:password@host:port/dbname
DATABASE_URL="mysql+pymysql://root:yourpassword@localhost:3306/ai_interview_assistant_db"
# Database URL for testing (used by pytest with pytest-dotenv)
# Example for MySQL: mysql+pymysql://testuser:testpassword@host:port/test_dbname
TEST_MYSQL_DATABASE_URL="mysql+pymysql://root:yourpassword@localhost:3306/test_ai_interview_assistant_db"
# Optional: If your application uses other specific settings
# EXAMPLE_SETTING="example_value"