make auth working

This commit is contained in:
Wuesteon 2025-11-26 01:31:12 +01:00
parent 7a1f1e9aef
commit 25824ed0ac
73 changed files with 9093 additions and 3877 deletions

20
chat/backend/.env.docker Normal file
View file

@ -0,0 +1,20 @@
# 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