- Added EmailVerificationBanner component to notify users about unverified email status and provide a resend verification option. - Introduced VerifyPage for handling email verification via a token in the URL, including success and error handling. - Updated LoginPage and AccountSettingsPage to allow users to resend verification emails directly from these pages. - Enhanced API utility with new functions for verifying emails and resending verification requests. - Updated routing to include the new verification page and improved link structure for verification links.
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
# === Deploy (.env auf dem Host) ============================================
|
|
# Kopiere diese Datei nach `.env` im SELBEN Verzeichnis wie `docker-compose.yml` (Pi: ~/docker/shinkan).
|
|
# Docker Compose liest `.env` beim Start — dadurch wird z. B. SMTP_HOST=${SMTP_HOST} gefüllt.
|
|
# Ist die Datei weg/leer oder steht SMTP_PASS nicht darin → im Container keine SMTP-Daten ([SMTP] nicht konfiguriert).
|
|
|
|
# Database
|
|
DB_HOST=postgres
|
|
DB_PORT=5432
|
|
DB_NAME=shinkan
|
|
DB_USER=shinkan_user
|
|
DB_PASSWORD=CHANGE_ME_SECURE_PASSWORD
|
|
|
|
# OpenRouter (KI - optional)
|
|
OPENROUTER_API_KEY=your_api_key_here
|
|
OPENROUTER_MODEL=anthropic/claude-sonnet-4
|
|
|
|
# SMTP (E-Mail)
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=noreply@jinkendo.de
|
|
SMTP_PASS=your_smtp_password
|
|
SMTP_FROM=noreply@jinkendo.de
|
|
# Port 465 oft SSL; dann z. B. SMTP_SSL=true und SMTP_STARTTLS=false
|
|
SMTP_SSL=
|
|
SMTP_STARTTLS=
|
|
|
|
# Bootstrap: erste Registrierung (leere Nutzerliste) erhält Rolle admin; oder feste Admin-Mails:
|
|
AUTO_ADMIN_FIRST_USER=true
|
|
ADMIN_BOOTSTRAP_EMAILS=
|
|
|
|
# App
|
|
APP_URL=https://shinkan.jinkendo.de
|
|
# Kommasepariert (ohne Leerzeichen um die Kommas ist am sichersten). Für Dev mehrere Origins nötig (HTTPS + LAN).
|
|
ALLOWED_ORIGINS=https://shinkan.jinkendo.de
|
|
ENVIRONMENT=production
|
|
|
|
# Nur docker-compose.dev-env.yml (optional): DEV_APP_URL, DEV_ALLOWED_ORIGINS
|
|
|
|
# Media Storage
|
|
MEDIA_DIR=/app/media
|
|
|
|
# MediaWiki Import (Semantic MediaWiki)
|
|
MEDIAWIKI_API_URL=https://karatetrainer.net/api.php
|
|
MEDIAWIKI_USER=Jinkendo
|
|
MEDIAWIKI_PASSWORD=CHANGE_ME
|
|
# Kategorienamen im Wiki (echte Namen von karatetrainer.net)
|
|
MEDIAWIKI_CATEGORY_EXERCISES=Übungen
|
|
MEDIAWIKI_CATEGORY_SKILLS=Fähigkeitsbeschreibung
|
|
MEDIAWIKI_CATEGORY_METHODS=Methodenbeschreibung
|
|
MEDIAWIKI_CATEGORY_MODELS=Reifegradmodelle
|