-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
50 lines (40 loc) · 1.5 KB
/
.env.example
File metadata and controls
50 lines (40 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# JetStream Environment Configuration
# Copy this file to .env and customize for your environment
# ============================================
# Server Settings
# ============================================
HOST=0.0.0.0
PORT=8000
DEBUG=false
AUTO_OPEN_BROWSER=true
# ============================================
# Database
# ============================================
DATABASE_URL=sqlite:///./jetstream.db
# ============================================
# Google Cloud Storage
# ============================================
# Your GCP project ID
GCS_PROJECT_ID=your-project-id
# Path to service account key (if using)
# GCS_CREDENTIALS_PATH=/path/to/service-account-key.json
# Default GCS bucket name
GCS_BUCKET_NAME=nmfs_odp_pifsc
# ============================================
# Scanner Performance Settings
# ============================================
# Maximum files to scan in detail before switching to folder-only mode
MAX_FILES_FOR_DETAILED_SCAN=1000
# Maximum subfolders to scan before switching to folder-only mode
MAX_SUBFOLDERS_FOR_DETAILED_SCAN=20
# Maximum time (seconds) for a single scan operation
SCAN_TIMEOUT_SECONDS=60
# Use fast scanning (os.scandir instead of os.walk)
ENABLE_FAST_SCAN=true
# ============================================
# File Filtering
# ============================================
# These are set in config.py but can be overridden here if needed
# Use JSON array format for lists
# EXCLUDE_FOLDERS=["_archive","_YEAR","ISLAND"]
# EXCLUDE_PATTERNS=[".*\\.tmp$",".*\\.bak$"]