-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.env.example
More file actions
43 lines (35 loc) · 2.17 KB
/
Copy path.env.example
File metadata and controls
43 lines (35 loc) · 2.17 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
# ── DevImpact Global Environment Configuration ──────────────────────────────
# Copy this file to .env before starting the web application or background worker:
# cp .env.example .env
# ── GitHub API Configuration ────────────────────────────────────────────────
# GitHub Personal Access Token (PAT) for GraphQL / REST API requests.
# Required scope: public_repo (or read-only fine-grained token).
GITHUB_TOKEN=your_github_token_here
# Public GitHub repository URL shown by the web application.
NEXT_PUBLIC_GITHUB_REPO_URL=https://github.com/O2sa/DevImpact
# GitHub query fetch limits per user
GITHUB_REPO_COUNT=30
GITHUB_PR_COUNT=80
GITHUB_ISSUE_COUNT=20
GITHUB_DISCUSSION_COUNT=10
GITHUB_USER_STALE_DAYS=14
# ── Database (PostgreSQL) ───────────────────────────────────────────────────
DATABASE_URL=postgresql://devimpact:devimpact@localhost:5432/devimpact?sslmode=disable
POSTGRES_PASSWORD=CHANGE_THIS_TO_A_LONG_RANDOM_PASSWORD
# ── Caching (Redis) ─────────────────────────────────────────────────────────
REDIS_ENABLED=false
REDIS_URL=redis://localhost:6379
REDIS_PASSWORD=
REDIS_CACHE_NAMESPACE=devimpact:v1
REDIS_CACHE_TTL_SECONDS=604800
REDIS_CONNECT_TIMEOUT_MS=1500
# ── Leaderboard Data & Worker Options ───────────────────────────────────────
# Cron schedule for background calculation worker (standard 5-field cron syntax)
# Default: "0 0 * * *" (runs once per day at midnight)
LEADERBOARD_CRON_SCHEDULE=0 0 * * *
# Data source template for seed country profiles
LEADERBOARD_SOURCE_URL_TEMPLATE=https://raw.githubusercontent.com/ashkulz/committers.top/gh-pages/_data/locations/{country}.yml
LEADERBOARD_SEED_LIMIT=256
LEADERBOARD_REFRESH_LIMIT=500
LEADERBOARD_USER_STALE_DAYS=30
DISABLE_CALCULATE_LEADERBOARD_ENDPOINT=false