mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 17:01:08 +02:00
20 lines
571 B
Docker
20 lines
571 B
Docker
# Docker Environment Configuration
|
|
# Copy this file to .env and fill in the values
|
|
|
|
# Database Configuration
|
|
DB_USER=chat
|
|
DB_PASSWORD=chatpassword
|
|
DB_NAME=chat
|
|
DB_PORT=5432
|
|
|
|
# Azure OpenAI Configuration (required)
|
|
AZURE_OPENAI_ENDPOINT=https://your-azure-openai-endpoint.openai.azure.com
|
|
AZURE_OPENAI_API_KEY=your-api-key-here
|
|
AZURE_OPENAI_API_VERSION=2024-12-01-preview
|
|
|
|
# Mana Core Auth URL
|
|
# Use host.docker.internal to connect to services running on host machine
|
|
MANA_CORE_AUTH_URL=http://host.docker.internal:3001
|
|
|
|
# Backend Port (exposed on host)
|
|
BACKEND_PORT=3002
|