-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.example.env
More file actions
36 lines (29 loc) · 826 Bytes
/
.example.env
File metadata and controls
36 lines (29 loc) · 826 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
# Database
DB_HOST=localhost
DB_PORT=5432
DB_NAME=ModuleManagement
DB_USER=admin
DB_PASSWORD=admin
# Keycloak
KEYCLOAK_HOST=keycloak
KEYCLOAK_ADMIN=admin
KEYCLOAK_ADMIN_PASSWORD=admin
KEYCLOAK_URL=http://localhost:8081
KEYCLOAK_REALM=module-management
KEYCLOAK_CLIENT_ID=module-management
# Application URLs
APP_HOST=localhost
APP_PORT=4200
API_PORT=8080
AUTH_PORT=8081
# AI Service
AZURE_ENDPOINT=https://your-azure-endpoint.openai.azure.com/
AZURE_DEPLOYMENT_NAME=your-deployment-name
AZURE_API_VERSION=2024-06-01-preview
AZURE_API_KEY=your-azure-api-key
CHAT_MODEL_URL=http://localhost:1234
CHAT_MODEL_NAME=llama-3.2-3b-instruct
EMBEDDING_MODEL_URL= http://localhost:1235
EMBEDDING_MODEL_NAME= sentence-transformers/all-mpnet-base-v2
CHAT_MODEL_SOURCE = OpenAiChatModel
EMBEDDING_MODEL_SOURCE = OpenAiEmbeddingModel