Files
conversations/env.d/development/postgresql.dist
T
Quentin BEY ea596733b8 🎉(conversations) bootstrap backend & frontend
This is the first commit which provides all the first stack for a
working chat.
The code currently require a local ollama to serve models.
2025-07-01 22:50:36 +02:00

11 lines
223 B
Plaintext

# Postgresql db container configuration
POSTGRES_DB=conversations
POSTGRES_USER=dinum
POSTGRES_PASSWORD=pass
# App database configuration
DB_HOST=postgresql
DB_NAME=conversations
DB_USER=dinum
DB_PASSWORD=pass
DB_PORT=5432