-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
40 lines (31 loc) · 930 Bytes
/
.env.example
File metadata and controls
40 lines (31 loc) · 930 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
32
33
34
35
36
37
38
39
40
## this env file is used to set environment variables when building locally a Docker container
# Docker Registry
DOCKER_REGISTRY_SERVER_URL=your-registry-url
# Container Tags
TAG=latest
# Frontend Configuration
VITE_BACKEND_URL=
# For production, this will be set by Azure App Service
# Backend Configuration - Azure OpenAI (Chat Model)
AZURE_OPENAI_ENDPOINT = ""
AZURE_OPENAI_API_KEY = ""
AZURE_DEPLOYMENT_NAME = ""
AZURE_OPENAI_API_VERSION = ""
# Azure OpenAI Embedding Model Configuration
AZURE_EMBEDDING_MODEL = ""
AZURE_OPENAI_ENDPOINT_EMBED = ""
AZURE_OPENAI_API_KEY_EMBED = ""
AZURE_EMBEDDING_DEPLOYMENT_NAME = ""
AZURE_OPENAI_API_VERSION_EMBED = ""
# Backend Database Variables (used by the application)
DB_USERNAME=""
DB_PASSWORD=""
DB_NAME=""
DB_HOST=""
DB_PORT=""
# JWT Secret for authentication
SECRET_KEY=""
# Azure Blob Container details
AZURE_BLOB_CONNECTION_STRING=""
AZURE_BLOB_KB=""
AZURE_BLOB_UPLOAD=""