Add .env.template
Browse files- .env.template +33 -0
.env.template
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ============================================================
|
| 2 |
+
# CRCC Construction Intelligence Hub - Configuration
|
| 3 |
+
# ============================================================
|
| 4 |
+
# Copy this file to .env and fill in your credentials:
|
| 5 |
+
# cp .env.template .env
|
| 6 |
+
# ============================================================
|
| 7 |
+
|
| 8 |
+
# --- Email Server (IMAP) ---
|
| 9 |
+
IMAP_HOST=imap.cr18gdubai.cn
|
| 10 |
+
IMAP_PORT=993
|
| 11 |
+
IMAP_USER=mohammad.jamzith@cr18gdubai.cn
|
| 12 |
+
IMAP_PASSWORD=your_password_here
|
| 13 |
+
|
| 14 |
+
# --- Google Gemini API ---
|
| 15 |
+
GOOGLE_API_KEY=your_gemini_api_key_here
|
| 16 |
+
|
| 17 |
+
# --- Polling ---
|
| 18 |
+
# How often to check for new emails (seconds)
|
| 19 |
+
EMAIL_CHECK_INTERVAL=60
|
| 20 |
+
|
| 21 |
+
# Auto-start background polling when app launches (true/false)
|
| 22 |
+
AUTO_START_POLLING=true
|
| 23 |
+
|
| 24 |
+
# --- AI Settings ---
|
| 25 |
+
# Model is hardcoded to gemini-3-flash-preview (do not change)
|
| 26 |
+
MAX_ATTACHMENT_SIZE_MB=50
|
| 27 |
+
|
| 28 |
+
# --- Database & Storage ---
|
| 29 |
+
DATABASE_PATH=/data/construction_hub.db
|
| 30 |
+
ATTACHMENTS_DIR=/data/attachments
|
| 31 |
+
|
| 32 |
+
# --- Logging ---
|
| 33 |
+
LOG_LEVEL=INFO
|