2025-06-03 16:39:17 +02:00
|
|
|
# Gitea-Konfiguration für Issue-Management
|
|
|
|
|
GITEA_URL=https://your-gitea-instance.com
|
|
|
|
|
REPO_OWNER=your-username
|
|
|
|
|
REPO_NAME=furt
|
|
|
|
|
GITEA_TOKEN=your-gitea-token-here
|
|
|
|
|
|
|
|
|
|
# Optional: Default-Assignee für Issues
|
|
|
|
|
DEFAULT_ASSIGNEE=your-username
|
|
|
|
|
|
2025-06-22 18:39:38 +02:00
|
|
|
# Lua-Konfiguration
|
|
|
|
|
LUA_COMMAND=lua51
|
|
|
|
|
LUA_VERSION=5.1
|
|
|
|
|
|
2025-06-03 16:39:17 +02:00
|
|
|
# Gateway-Konfiguration (für Entwicklung)
|
|
|
|
|
GATEWAY_PORT=8080
|
|
|
|
|
GATEWAY_LOG_LEVEL=info
|
|
|
|
|
|
2025-06-24 19:42:44 +02:00
|
|
|
# CORS-Konfiguration (comma-separated list)
|
|
|
|
|
# Development (default if not set):
|
|
|
|
|
# CORS_ALLOWED_ORIGINS=http://localhost:1313,http://127.0.0.1:1313
|
|
|
|
|
#
|
|
|
|
|
# Production example:
|
|
|
|
|
# CORS_ALLOWED_ORIGINS=https://yourdomain.com,https://www.yourdomain.com
|
|
|
|
|
CORS_ALLOWED_ORIGINS=http://localhost:1313,http://127.0.0.1:1313
|
|
|
|
|
|
2025-06-03 16:39:17 +02:00
|
|
|
# Service-Ports (für lokale Entwicklung)
|
|
|
|
|
FORMULAR2MAIL_PORT=8081
|
|
|
|
|
SAGJAN_PORT=8082
|
|
|
|
|
|
|
|
|
|
# SMTP-Konfiguration (für formular2mail)
|
|
|
|
|
SMTP_HOST=localhost
|
|
|
|
|
SMTP_PORT=25
|
2025-06-19 09:52:15 +02:00
|
|
|
SMTP_USERNAME=noreply@example.com
|
|
|
|
|
SMTP_PASSWORD=secret-password
|
|
|
|
|
SMTP_FROM=noreply@example.com
|
|
|
|
|
SMTP_TO=admin@example.com
|
2025-06-03 16:39:17 +02:00
|
|
|
|
|
|
|
|
# API-Schlüssel (generiere sichere Schlüssel für Produktion!)
|
|
|
|
|
HUGO_API_KEY=change-me-in-production
|
|
|
|
|
ADMIN_API_KEY=change-me-in-production
|
2025-06-19 09:52:15 +02:00
|
|
|
|