https://github.com/bazel-contrib/bazel-catalog
Catalog of Bazel rules. http://awesomebazel.com meets https://bazel.build/rules plus live stats.
https://github.com/bazel-contrib/bazel-catalog
Last synced: 5 months ago
JSON representation
Catalog of Bazel rules. http://awesomebazel.com meets https://bazel.build/rules plus live stats.
- Host: GitHub
- URL: https://github.com/bazel-contrib/bazel-catalog
- Owner: bazel-contrib
- License: apache-2.0
- Created: 2023-03-07T14:24:36.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-06-01T01:42:49.000Z (8 months ago)
- Last Synced: 2025-07-05T13:33:54.580Z (6 months ago)
- Language: Shell
- Homepage: https://bazel-contrib.github.io/bazel-catalog/
- Size: 23.7 MB
- Stars: 6
- Watchers: 18
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- stars - bazel-contrib/bazel-catalog - Catalog of Bazel rules. http://awesomebazel.com meets https://bazel.build/rules plus live stats. \[*Apache License 2.0*\] (⭐️6) *Archived!* (Shell)
README
# Bazel Catalog
See the live site:
## Developing
This is written in Bash and JQ.
To work in this repository, it helps to understand the structure and dataflows.
1. Ingest data from sources into this repo to produce a "sync" PR.
- From BCR using `scripts/merge_bcr_metadata.sh`. This is intended to be non-destructive.
- From GitHub API using `scripts/collect_github_stats.sh`
2. git data produced by `collect_gitstats.sh` is slow to collect and has a giant output, which
goes into the `gitstats` folder in the `gh-pages` branch to avoid bloating the `main` branch.
GitHub Actions will then take over automatically, running the render.yml workflow which:
1. Runs `scripts/render_ghpages.sh` to produce the rest of the content in the `gh-pages` branch.
- This script runs `filters/*_data.jq` to get some datapoints which we render in markdown
2. Pushes the `gh-pages` branch
3. A separate GHA workflow updates the live GitHub pages site after the gh-pages branch changes.
Still needed:
- [ ] Cron-style automation for data ingest.