
- Ajout docker-compose.simple.yml avec ports modifiés (15432, 16379, 19000, 19001, 18000) - Création app_simple.py sans dépendances IA - Ajout Dockerfile.simple et requirements.simple.txt - Correction attribut metadata réservé dans database.py - Ajout scripts de démarrage et test simplifiés - Configuration .env.simple pour version sans IA
22 lines
382 B
Plaintext
22 lines
382 B
Plaintext
# Configuration simplifiée sans IA
|
|
PROJECT_NAME=notariat
|
|
DOMAIN=localhost
|
|
TZ=Europe/Paris
|
|
|
|
# Base de données PostgreSQL
|
|
POSTGRES_USER=notariat
|
|
POSTGRES_PASSWORD=notariat_pwd
|
|
POSTGRES_DB=notariat
|
|
|
|
# Redis
|
|
REDIS_PASSWORD=
|
|
|
|
# MinIO (stockage objet)
|
|
MINIO_ROOT_USER=minio
|
|
MINIO_ROOT_PASSWORD=minio_pwd
|
|
MINIO_BUCKET=ingest
|
|
|
|
# Configuration de développement
|
|
DEBUG=true
|
|
LOG_LEVEL=debug
|