{"id":41463767,"url":"https://github.com/froozeify/git-ladder","last_synced_at":"2026-02-12T09:11:41.819Z","repository":{"id":334228411,"uuid":"1140488084","full_name":"froozeify/git-ladder","owner":"froozeify","description":"Github Contribution Hall of Fame accross multiple repositories","archived":false,"fork":false,"pushed_at":"2026-02-05T13:14:48.000Z","size":926,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-05T23:55:52.279Z","etag":null,"topics":["commits","contributions","halloffame","ladders","pull-requests","repositories","statistics"],"latest_commit_sha":null,"homepage":"https://froozeify.github.io/git-ladder/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/froozeify.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-23T10:47:45.000Z","updated_at":"2026-02-05T13:14:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/froozeify/git-ladder","commit_stats":null,"previous_names":["froozeify/git-ladder"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/froozeify/git-ladder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/froozeify%2Fgit-ladder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/froozeify%2Fgit-ladder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/froozeify%2Fgit-ladder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/froozeify%2Fgit-ladder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/froozeify","download_url":"https://codeload.github.com/froozeify/git-ladder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/froozeify%2Fgit-ladder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29362291,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["commits","contributions","halloffame","ladders","pull-requests","repositories","statistics"],"created_at":"2026-01-23T16:14:32.151Z","updated_at":"2026-02-12T09:11:41.814Z","avatar_url":"https://github.com/froozeify.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git Ladder\n\n🏆 **A GitHub Pages website displaying commits and pull requests Hall of Fame.**\n\n## Features\n\n- 📊 **Interactive Charts**: Beautiful bar charts showing user rankings and line charts for monthly trends\n- 🎯 **Flexible Filtering**: Filter by year, month, and metric type (commits or pull requests)\n- 🌙 **Dark Theme**: Modern glassmorphism design with smooth animations\n- 🔄 **Auto-Updated**: Data is fetched daily via GitHub Actions\n- 📱 **Responsive**: Works great on desktop, tablet, and mobile\n\n## Getting Started\n\nConfigure which GitHub organizations to track using the `GH_ORGS` repository variable. See [Configuration](#configuration) for details.\n\n## Quick Start\n\n### View the Website\n\nVisit the GitHub Pages deployment: `https://froozeify.github.io/git-ladder/`\n\n### Local Development\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/froozeify/git-ladder.git\n   cd git-ladder\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n\n3. Serve locally:\n   ```bash\n   npm run serve\n   ```\n\n4. Open `http://localhost:3000` in your browser\n\n### Fetch Fresh Data\n\nTo manually fetch the latest data from GitHub:\n\n1. Create a `.env` file from the example:\n   ```bash\n   cp .env.example .env\n   # Edit .env with your configuration\n   ```\n\n2. Run the fetch script:\n   ```bash\n   npm run fetch-data\n   ```\n\nThe script automatically loads configuration from `.env`.\n\n## Project Structure\n\n```\ngit-ladder/\n├── .github/workflows/\n│   └── fetch-and-deploy.yml # Deployment workflow (Push \u0026 Schedule)\n├── data/\n│   └── stats.json          # Generated statistics (not committed)\n├── scripts/\n│   └── fetch-stats.js      # Data fetching script (auto-loads .env)\n├── src/\n│   ├── css/\n│   │   └── style.css       # Styling\n│   └── js/\n│       ├── DataService.js  # Data loading/processing\n│       ├── ChartManager.js # Chart.js wrapper\n│       └── App.js          # Main application\n├── index.html              # Main page\n├── .env.example            # Example configuration\n└── package.json\n```\n\n## Configuration\n\n### GitHub Setup (Required)\n\nFollow these steps to configure your repository:\n\n#### 1. Enable GitHub Pages\n\n1. Go to your repository's **Settings** → **Pages**\n2. Under \"Build and deployment\", set **Source** to **GitHub Actions**\n\n#### 2. Configure Organizations to Track\n\n1. Go to **Settings** → **Secrets and variables** → **Actions**\n2. Click the **Variables** tab\n3. Click **New repository variable**\n4. Add:\n   - **Name**: `GH_ORGS`\n   - **Value**: Comma-separated list of organizations (e.g., `glpi-project,glpi-network`)\n\n#### 3. Configure Data Range (Optional)\n\n1. Click **New repository variable**\n2. Add:\n   - **Name**: `GH_YEARS`\n   - **Value**: Number of years to fetch (default: `5`)\n\n#### 4. (Optional) Private Repositories\n\nFor tracking private repositories:\n\n1. Create a [Personal Access Token](https://github.com/settings/tokens) with `repo` scope\n2. Go to **Settings** → **Secrets and variables** → **Actions**\n3. Click the **Secrets** tab → **New repository secret**\n4. Add:\n   - **Name**: `GH_PAT`\n   - **Value**: Your personal access token\n\n\u003e **Note**: Secret and variable names cannot start with `GITHUB_`, which is why we use `GH_` prefix.\n\n### Local Development\n\nFor local data fetching:\n\n```bash\n# Create and configure .env file\ncp .env.example .env\n# Edit .env with your GH_ORGS, GH_YEARS, and GH_TOKEN\n\n# Run the fetch script\nnpm run fetch-data\n```\n\n## Technology Stack\n\n- **HTML5 / CSS3 / JavaScript (ES6+)**: No build step required\n- **Chart.js**: Beautiful, responsive charts\n- **GitHub Actions**: Automated data fetching and deployment\n- **GitHub Pages**: Free static hosting (artifact-based deployment)\n- **Octokit**: Official GitHub API client\n\n## How It Works\n\nThe deployment uses GitHub's artifact-based Pages deployment:\n\n1. **Daily Trigger**: GitHub Actions runs the workflow at 6:00 UTC daily\n2. **Data Fetch**: The script fetches commits/PRs from configured organizations\n3. **Build Artifact**: The entire site (including generated data) is packaged\n4. **Deploy**: The artifact is deployed directly to GitHub Pages\n\nThis approach means:\n- ✅ No data files committed to the repository\n- ✅ Fresh data on every deployment\n- ✅ Clean git history\n\n### Important: Scheduled Workflow Reliability\n\nGitHub may disable scheduled workflows after **60 days of repository inactivity**. If the daily data refresh stops working:\n\n1. **Check if the workflow is disabled**: Go to **Actions** → Click the workflow → Look for a yellow banner indicating it's disabled\n2. **Re-enable if needed**: Click \"Enable workflow\" button\n3. **Ensure repository activity**: Any push, issue, or PR activity resets the 60-day counter\n\nYou can also manually trigger the workflow anytime via **Actions** → **Fetch Data and Deploy to Pages** → **Run workflow**.\n\nFor more details, see [GitHub's documentation on disabling workflows](https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/disabling-and-enabling-a-workflow).\n\n## Contributing\n\n1. Fork the repository\n2. Create branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## Acknowledgments\n\n- [Chart.js](https://www.chartjs.org/) for the visualization library\n- [Inter Font](https://fonts.google.com/specimen/Inter) for the typography\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffroozeify%2Fgit-ladder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffroozeify%2Fgit-ladder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffroozeify%2Fgit-ladder/lists"}