-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
57 lines (41 loc) · 2.25 KB
/
.env.example
File metadata and controls
57 lines (41 loc) · 2.25 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
51
52
53
54
55
56
57
# =============================================================================
# CORE CONFIGURATION
# =============================================================================
# SOURCE_DIR - Directory to watch for incoming audiobooks (default: /data/incoming)
SOURCE_DIR=/data/incoming
# DEST_DIR - Target library directory for organized files (default: /data/library)
DEST_DIR=/data/library
# =============================================================================
# LOGGING CONFIGURATION
# =============================================================================
# LOG_FILE - Path to persistent log file (default: /data/logs/migrations.log)
LOG_FILE=/data/logs/migrations.log
# LOG_LEVEL - Logging level: trace, debug, info, warn, error (default: info)
LOG_LEVEL=info
# =============================================================================
# CLAUDE AI CONFIGURATION
# =============================================================================
# ANTHROPIC_API_KEY - Your Anthropic API key (REQUIRED for AI normalization)
ANTHROPIC_API_KEY=sk-ant-xxx
# CLAUDE_MODEL - Claude model to use for normalization (default: claude-3-5-haiku-20241022)
# Find models: https://docs.claude.com/en/docs/about-claude/models/overview#model-names
CLAUDE_MODEL=claude-3-5-haiku-20241022
# ANTHROPIC_API_URL - Alternative API endpoint (default: https://api.anthropic.com)
ANTHROPIC_API_URL=https://api.anthropic.com
# =============================================================================
# PROCESSING BEHAVIOR
# =============================================================================
# DIRECTORY_STABILITY_TIMEOUT - Milliseconds to wait for directory stability before processing (default: 5000)
# Configurable to ensure larger file transfers complete before taking action
DIRECTORY_STABILITY_TIMEOUT=5000
# =============================================================================
# FILE SYSTEM PERMISSIONS
# =============================================================================
# PUID - User ID for file ownership (default: 0)
PUID=0
# PGID - Group ID for file ownership (default: 0)
PGID=0
# FILE_MODE - Permission mode for migrated files (default: 664)
FILE_MODE=664
# DIR_MODE - Permission mode for created directories (default: 775)
DIR_MODE=775