Mise en ligne de la version 0.2.0
All checks were successful
Build & Push Images / build (brain) (push) Successful in 46s
Build & Push Images / build (core) (push) Successful in 1m21s
Build & Push Images / build (web) (push) Successful in 1m25s

This commit is contained in:
2026-04-21 14:25:17 +02:00
parent ebee8e106b
commit ba8a503b3e
300 changed files with 35329 additions and 1 deletions

40
.env.example Normal file
View File

@@ -0,0 +1,40 @@
# ==========================================================================
# Configuration LoreMindMJ - copier en .env et adapter
# ==========================================================================
# --- Registry Gitea (ou celui de l'editeur) ----------------------------
REGISTRY=git.igmlcreation.fr
TAG=latest
# --- Port d'acces web ----------------------------------------------------
WEB_PORT=8081
# --- PostgreSQL (IMPORTANT : change POSTGRES_PASSWORD) -------------------
POSTGRES_DB=loremind
POSTGRES_USER=loremind
POSTGRES_PASSWORD=change-me-please
# --- Securite : admin HTTP Basic pour /api/settings/** -------------------
# Sans ces variables, l'app refuse de demarrer. Generez un mot de passe fort.
ADMIN_USERNAME=admin
ADMIN_PASSWORD=change-me-please
# --- Securite : secret partage Core <-> Brain ----------------------------
# Empeche un attaquant d'atteindre le Brain directement. Generez 32+ chars
# aleatoires, ex : openssl rand -hex 32
BRAIN_INTERNAL_SECRET=change-me-use-openssl-rand-hex-32
# --- MinIO (stockage objet images) ---------------------------------------
MINIO_USER=minioadmin
MINIO_PASSWORD=minioadmin
# --- Provider LLM : "ollama" (local) ou "onemin" (cloud 1min.ai) ---------
LLM_PROVIDER=ollama
# Ollama (si LLM_PROVIDER=ollama)
OLLAMA_BASE_URL=http://host.docker.internal:11434
LLM_MODEL=gemma4:26b
# 1min.ai (si LLM_PROVIDER=onemin)
ONEMIN_API_KEY=
ONEMIN_MODEL=gpt-4o-mini