-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (26 loc) · 822 Bytes
/
.env.example
File metadata and controls
35 lines (26 loc) · 822 Bytes
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
# ============================================
# VTagger Environment Variables
# ============================================
# Copy this file to .env and fill in values
# Umbrella API credentials
VTAGGER_USERNAME=your-email@example.com
VTAGGER_PASSWORD=your-password
# Umbrella instance name (e.g. "mycompany")
VTAGGER_INSTANCE=mycompany
# Database path
VTAGGER_DATABASE_PATH=./data/vtagger.db
# API Server
VTAGGER_API_HOST=0.0.0.0
VTAGGER_API_PORT=8888
VTAGGER_LOG_LEVEL=INFO
# File paths
VTAGGER_OUTPUT_DIR=./data/output
# Umbrella API base URL
VTAGGER_UMBRELLA_API_BASE=https://app.anodot.com/api
# Sync settings
VTAGGER_BATCH_SIZE=1000
VTAGGER_RETENTION_DAYS=90
# Cron schedule (default: daily at 2 AM UTC)
SYNC_CRON_SCHEDULE=0 2 * * *
# Days of history to keep during soft cleanup
CLEANUP_RETENTION_DAYS=30