This repository was archived by the owner on Apr 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
69 lines (58 loc) · 2.26 KB
/
Copy path.env.example
File metadata and controls
69 lines (58 loc) · 2.26 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
58
59
60
61
62
63
64
65
66
67
68
69
# GitHub Authentication
# Choose one authentication method: Personal Access Token OR GitHub App
# Option 1: Personal Access Token
GITHUB_TOKEN=your_github_token_here
# See GITHUB_TOKEN_SETUP.md for detailed instructions on creating a token with required permissions
# Option 2: GitHub App (recommended for higher rate limits)
GITHUB_APP_ID=your_app_id
# Private key must be formatted as a single line with newlines replaced by \n
GITHUB_PRIVATE_KEY=-----BEGIN RSA PRIVATE KEY-----\nYour_Private_Key_Content_Here\n-----END RSA PRIVATE KEY-----
GITHUB_INSTALLATION_ID=your_installation_id
# See GITHUB_APP_SETUP.md and SECURITY_BEST_PRACTICES.md for setup instructions and security guidelines
# Google Cloud configuration
PROJECT_ID=your_gcp_project_id
REGION=your_gcp_region
SERVICE_NAME=github-package
# Google Cloud Storage
GCS_ENDPOINT=https://storage.googleapis.com
GCS_REGION=auto
GCS_ACCESS_KEY_ID=your_gcs_access_key_id
GCS_SECRET_ACCESS_KEY=your_gcs_secret_access_key
GCS_BUCKET_NAME=your_bucket_name
# Service Configuration
PORT=8080
LOG_LEVEL=info
AUTO_START_PROCESSING=true
AUTO_BACKFILL_PROCESSING=false
RATE_LIMIT_BUFFER=100
MAX_CONCURRENT_REQUESTS=10
RETRY_ATTEMPTS=3
RETRY_DELAY=1000
# GitHub Sync Configuration
GITHUB_SYNC_SCHEDULE=0 0 * * *
# GitHub Backfill Configuration
GITHUB_BACKFILL_DAYS=365
GITHUB_BACKFILL_MAX_REPOS=1000
GITHUB_BACKFILL_MAX_ORGS=100
GITHUB_BACKFILL_MAX_ISSUES_PER_REPO=500
GITHUB_BACKFILL_MAX_PRS_PER_REPO=500
GITHUB_BACKFILL_MIN_STARS=100
# Comprehensive Crawling Configuration
ENABLE_COMPREHENSIVE_CRAWLING=true
COMPREHENSIVE_CRAWL_USERS=true
COMPREHENSIVE_CRAWL_REPOS=true
COMPREHENSIVE_CRAWL_START_USER_ID=0
COMPREHENSIVE_CRAWL_START_REPO_ID=0
COMPREHENSIVE_CRAWL_BATCH_SIZE=100
COMPREHENSIVE_CRAWL_RATE_LIMIT_BUFFER=500
# Automatic Profile Prioritization (always enabled)
# The system automatically prioritizes high-quality developers based on:
# - Productivity metrics (commits, contributions, project activity)
# - Technology adoption (latest frameworks, languages, tools)
# - Community influence (stars, followers, meaningful contributions)
# - Code quality indicators (well-documented projects, diverse skills)
# Development Configuration
LOCAL_MONITORING=false
# Webhook Configuration
ENABLE_WEBHOOKS=false
GITHUB_WEBHOOK_SECRET=your_webhook_secret