-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (45 loc) · 2.34 KB
/
.env.example
File metadata and controls
52 lines (45 loc) · 2.34 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
45
46
47
48
49
50
51
52
# DeckSmith Environment Variables
# Copy this file to .env and fill in your values
# =============================================================================
# Azure OpenAI Configuration (Required for LLM)
# =============================================================================
AZURE_OPENAI_API_KEY=your_azure_openai_api_key
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_API_VERSION=2024-02-15-preview
AZURE_OPENAI_DEPLOYMENT_NAME=your_deployment_name
AZURE_OPENAI_MODEL_NAME=gpt-4
# =============================================================================
# Azure DALL-E Configuration (Required for Image Generation)
# =============================================================================
AZURE_DALLE_API_KEY=your_azure_dalle_api_key
AZURE_DALLE_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_DALLE_API_VERSION=2024-02-15-preview
AZURE_DALLE_DEPLOYMENT_NAME=dall-e-3
AZURE_DALLE_MODEL_NAME=dall-e-3
# =============================================================================
# Django Backend Configuration (Required for Authentication)
# =============================================================================
DJANGO_BACKEND_URL=http://localhost:8000
FRONTENDURL=http://localhost:3000
# =============================================================================
# API Key for Direct Authentication (Optional)
# =============================================================================
API_KEY=your_secure_api_key
# =============================================================================
# Email Configuration (Required for Email Features)
# =============================================================================
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=465
EMAIL_HOST_USER=your_email@gmail.com
EMAIL_HOST_PASSWORD=your_app_password
EMAIL_FROM=noreply@decksmith.app
# =============================================================================
# Application Settings
# =============================================================================
# Enable debug mode for verbose logging (set to 'true' in development only)
DEBUG_MODE=false
# =============================================================================
# Vector DB Persistence (Optional)
# =============================================================================
FAISS_INDEX_PATH=data/faiss_index.bin
TEXTS_PATH=data/texts.pkl