Die API-Version steckt in der Basis-URL (PDF_SERVICE_URL, Standard http://localhost:8084/api/v1); der Client ruft relativ dazu /invoices/sign auf. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
13 lines
470 B
Bash
13 lines
470 B
Bash
# Vorlage fuer die .env-Datei: kopieren nach .env und Werte eintragen.
|
|
# cp .env.example .env
|
|
|
|
# MongoDB-Verbindung fuer die Rechnungstemplates
|
|
MONGODB_URI=mongodb://BENUTZER:PASSWORT@localhost:27017/pdf-tool?authSource=admin
|
|
|
|
# HTTP-Port der Anwendung (Standard: 8083)
|
|
SERVER_PORT=8083
|
|
|
|
# Basis-URL der PDF-Service-API (ZUGFeRD-Umwandlung); die Endpoints
|
|
# /invoices/sign und /invoices/validate liegen unterhalb dieser URL.
|
|
PDF_SERVICE_URL=http://localhost:8084/api/v1
|