feat(05-01): add Phase 5 cloud storage packages and config settings

- Add 6 new packages to requirements.txt: cryptography>=41.0.0,
  google-auth-oauthlib>=1.3.1, google-api-python-client>=2.196.0,
  msal>=1.36.0, webdavclient3>=3.14.7, cachetools>=5.3.0
- Add 8 new Settings fields to config.py: cloud_creds_key,
  google_client_id/secret, onedrive_client_id/secret/tenant_id,
  backend_url (frontend_url already present from Phase 2)
- Append cloud storage section to .env.example
This commit is contained in:
curo1305
2026-05-28 20:48:38 +02:00
parent 4d7b4c83ab
commit a052ed4528
3 changed files with 42 additions and 0 deletions
+20
View File
@@ -49,3 +49,23 @@ SMTP_FROM=noreply@docuvault.local
# Comma-separated list of allowed origins. Default: http://localhost:5173
# Example for production: https://app.docuvault.example.com
CORS_ORIGINS=http://localhost:5173
# ── Cloud Storage Backends (Phase 5) ─────────────────────────────────────────
# Master key for HKDF per-user cloud credential encryption.
# Must be at least 32 bytes. Generate with:
# python3 -c "import secrets; print(secrets.token_urlsafe(32))"
CLOUD_CREDS_KEY=CHANGEME-32-bytes-padded!!
# Google Drive OAuth 2.0 — create credentials at https://console.cloud.google.com/
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# Microsoft OneDrive OAuth 2.0 — create app at https://portal.azure.com/
ONEDRIVE_CLIENT_ID=
ONEDRIVE_CLIENT_SECRET=
# "common" for personal + org accounts; or your tenant UUID for org-only
ONEDRIVE_TENANT_ID=common
# Backend and frontend URLs — used to construct OAuth callback/redirect URLs
BACKEND_URL=http://localhost:8000
FRONTEND_URL=http://localhost:5173