| # Hugging Face Space 環境變數範例 | |
| # 複製此檔案為 .env 並填入實際值 | |
| # 伺服器設定 | |
| PORT=7860 | |
| NODE_ENV=production | |
| # 資料庫 (SQLite) | |
| DATABASE_URL=file:/data/sqlite.db | |
| # JWT 認證密鑰 (請更換為隨機字串,至少 32 字元) | |
| JWT_SECRET=your-random-jwt-secret-key-change-this-in-production | |
| # 加密密鑰 (必須是 32 字元,用於加密敏感資料) | |
| ENCRYPTION_KEY=your-32-character-encryption-key | |
| # 暫存儲存路徑 | |
| TEMP_STORAGE_PATH=/app/temp-storage | |
| # Turnstile 驗證碼服務 (可選,如果有部署 turnstile-solver) | |
| # TURNSTILE_SOLVER_URL=https://your-turnstile-solver.vercel.app | |
| # 站點配置 (可選) | |
| # SITE_NAME=AI Generator | |
| # SITE_DESCRIPTION=AI Image & Video Generator | |