Initial commit with Email Import Wizard and Task Processor updates
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
# =============================================================================
|
||||
# Paperless Manager - Docker Compose Konfiguration
|
||||
# =============================================================================
|
||||
# Kopiere diese Datei nach .env und passe die Werte an.
|
||||
#
|
||||
# Lokal: VITE_API_URL=http://localhost:3100 (direkter Zugriff)
|
||||
# Produktion: VITE_API_URL leer lassen (nginx Reverse-Proxy leitet /api weiter)
|
||||
# =============================================================================
|
||||
|
||||
# --- Ports ---
|
||||
BACKEND_PORT=3100
|
||||
FRONTEND_PORT=8080
|
||||
|
||||
# --- MySQL Datenbank (extern) ---
|
||||
DB_HOST=192.168.1.x
|
||||
DB_PORT=3306
|
||||
DB_USERNAME=root
|
||||
DB_PASSWORD=changeme
|
||||
DB_DATABASE=paperlessadd
|
||||
|
||||
# --- Paperless-ngx ---
|
||||
PAPERLESS_URL=http://paperless:8000
|
||||
PAPERLESS_TOKEN=your_paperless_api_token
|
||||
|
||||
# --- Ollama OCR ---
|
||||
OLLAMA_URL=http://ollama:11434
|
||||
OLLAMA_MODEL=llava
|
||||
|
||||
# --- Scanner ---
|
||||
SCANNER_WATCH_DIR=/data/scanner
|
||||
SCANNER_ARCHIVE_DIR=/data/scanner/_processed_archive
|
||||
|
||||
# --- OIDC / Authentik ---
|
||||
OIDC_ISSUER=https://auth.example.com/application/o/your-app-slug
|
||||
OIDC_CLIENT_ID=your-oidc-client-id
|
||||
OIDC_REDIRECT_URI=https://dokumente.example.com/auth/callback
|
||||
|
||||
# --- Frontend API-URL ---
|
||||
# Lokal: http://localhost:3100 (Backend direkt)
|
||||
# Produktion: leer lassen (nginx proxied /api → Backend)
|
||||
VITE_API_URL=
|
||||
|
||||
# --- Interne Belegnummer API ---
|
||||
# Platzhalter {Jahr} wird zur Laufzeit durch das Jahr des Eingangsdatums ersetzt
|
||||
BELEGNUMMER_GET_URL=https://beispiel-api.de/get-number/{Jahr}
|
||||
BELEGNUMMER_SET_URL=https://beispiel-api.de/set-number/{Jahr}/{Nummer}
|
||||
Reference in New Issue
Block a user