-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (32 loc) · 997 Bytes
/
.env.example
File metadata and controls
43 lines (32 loc) · 997 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
36
37
38
39
40
41
42
43
# OpenTIR Environment Configuration Example
# Copy this file to .env and update with your values
# GitHub API Token (required for repository operations)
# Get your token at: https://github.com/settings/tokens
GITHUB_TOKEN=your_github_token_here
# Base directory for workspace (optional)
# OPENTIR_BASE_DIR=/path/to/your/workspace
# Logging level (optional)
# OPENTIR_LOG_LEVEL=INFO
# Cache directory location (optional)
# OPENTIR_CACHE_DIR=/path/to/cache
# Maximum number of worker threads for parallel operations (optional)
# OPENTIR_MAX_WORKERS=4
# Rate limiting settings (optional)
# GITHUB_API_RATE_LIMIT=60
# GITHUB_API_RETRY_DELAY=1
# Logging Configuration
LOG_LEVEL=INFO
# Rate Limiting (requests per hour)
REQUESTS_PER_HOUR=5000
MAX_CONCURRENT_REQUESTS=10
# Directory Structure
REPOS_DIR=repos
DOCS_DIR=docs
CACHE_DIR=.cache
LOGS_DIR=logs
# Documentation Theme
DOCS_THEME=material
# Analysis Configuration
ANALYSIS_DEPTH=comprehensive
INCLUDE_TESTS=true
INCLUDE_EXAMPLES=true