mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:21:10 +02:00
make auth working
This commit is contained in:
parent
7a1f1e9aef
commit
25824ed0ac
73 changed files with 9093 additions and 3877 deletions
20
chat/backend/.env.docker
Normal file
20
chat/backend/.env.docker
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue