Files
lollms_hub/.env.example
Saifeddine ALOUI b5c2dfdade chore(rebrand): rename project from "Ollama Proxy Fortress" to "lollms hub"
Update all project references, documentation, and assets to reflect the new
branding. Changes include:
- Rename application references in README, CONTRIBUTING, DEVELOPMENT
- Update default database filename from ollama_proxy.db to lollms_hub.db
- Update .env.example header and bootstrap configuration
- Adjust .gitignore for new database name
- No functional code changes, purely cosmetic rebranding
2026-03-22 01:12:20 +01:00

28 lines
1.1 KiB
Plaintext

# ============================================================
# LoLLMs Hub - Bootstrap Configuration
# ============================================================
# These settings are read from the .env file at startup.
# Copy this file to .env and customize values as needed.
# For Docker deployments, use: docker run --env-file .env ...
# ============================================================
# --- CORE SETTINGS ---
# Database URL (default: SQLite in current directory)
# Examples:
# SQLite (default): sqlite+aiosqlite:///./lollms_hub.db
# PostgreSQL: postgresql+asyncpg://user:password@localhost/lollms_hub
DATABASE_URL=sqlite+aiosqlite:///./lollms_hub.db
# Admin user credentials (used for first login)
ADMIN_USER=admin
ADMIN_PASSWORD=changeme
# Server port (default: 8080)
PROXY_PORT=8080
# Secret key for session encryption (generate a new one for production)
# You can generate one with: python -c "import secrets; print(secrets.token_hex(32))"
SECRET_KEY=dd2a57833f4a2115b02644c3c332822d5b6e405d542a2258c422fb39a8e97b10
# Logging level (debug, info, warning, error, critical)
LOG_LEVEL=info