-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (24 loc) · 837 Bytes
/
.env.example
File metadata and controls
31 lines (24 loc) · 837 Bytes
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
# ParseWise AI - Environment Variables
# Copy this file to .env and fill in your values
# Azure OpenAI
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_KEY=your-api-key
AZURE_OPENAI_DEPLOYMENT=gpt-4
# Azure Document Intelligence
AZURE_DOCUMENT_INTEL_ENDPOINT=https://your-resource.cognitiveservices.azure.com/
AZURE_DOCUMENT_INTEL_KEY=your-api-key
# Azure Cognitive Search
AZURE_SEARCH_ENDPOINT=https://your-search.search.windows.net
AZURE_SEARCH_KEY=your-api-key
AZURE_SEARCH_INDEX=documents
# Azure Blob Storage
AZURE_STORAGE_CONNECTION_STRING=your-connection-string
AZURE_STORAGE_CONTAINER=documents
# Database
DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/parsewise
# Redis
REDIS_URL=redis://localhost:6379/0
# Application
SECRET_KEY=your-secret-key-here
DEBUG=false
ALLOWED_HOSTS=*