feat: Mini-Cloud Plattform - komplette Implementierung Phase 0-8
Selbstgehostete Web-Cloud mit Dateiverwaltung, Kalender, Kontakte, Email-Webclient, Office-Viewer und Passwort-Manager. Backend (Flask/Python): - JWT-Auth mit Access/Refresh Tokens, Benutzerverwaltung - Dateien: Upload/Download, Ordner, Berechtigungen, Share-Links - Kalender: CRUD, Teilen, iCal-Export, CalDAV well-known URLs - Kontakte: Adressbuecher, vCard-Export, Teilen - Email: IMAP/SMTP-Proxy, Multi-Account - Office-Viewer: DOCX/XLSX/PPTX/PDF Vorschau - Passwort-Manager: AES-256-GCM clientseitig, KeePass-Import - Sync-API fuer Desktop/Mobile-Clients - SQLite mit WAL-Modus Frontend (Vue 3 + PrimeVue): - Datei-Explorer mit Breadcrumbs und Share-Dialogen - Monatskalender mit Event-Verwaltung - Kontaktliste mit Adressbuch-Sidebar - Email-Client mit 3-Spalten-Layout - Passwort-Manager mit TOTP und Passwort-Generator - Admin-Panel, Settings, oeffentliche Share-Seite Docker: Multi-Stage Build, Bind Mounts (keine Volumes) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
# Mini-Cloud Konfiguration
|
||||
# Kopiere diese Datei nach .env und passe die Werte an
|
||||
|
||||
# Flask
|
||||
SECRET_KEY=change-me-to-a-random-secret-key
|
||||
FLASK_ENV=production
|
||||
FLASK_DEBUG=0
|
||||
|
||||
# Datenbank
|
||||
DATABASE_PATH=./data/minicloud.db
|
||||
|
||||
# Dateispeicher
|
||||
UPLOAD_PATH=./data/files
|
||||
|
||||
# JWT
|
||||
JWT_SECRET_KEY=change-me-to-another-random-secret-key
|
||||
JWT_ACCESS_TOKEN_EXPIRES=900
|
||||
JWT_REFRESH_TOKEN_EXPIRES=604800
|
||||
|
||||
# Server
|
||||
HOST=0.0.0.0
|
||||
PORT=5000
|
||||
|
||||
# Frontend URL (fuer CORS)
|
||||
FRONTEND_URL=http://localhost:3010
|
||||
|
||||
# Max Upload-Groesse in MB
|
||||
MAX_UPLOAD_SIZE_MB=500
|
||||
Reference in New Issue
Block a user