Currently, we hit GitHub API every time we load the page to render the list of community members.
This has two issues:
- it takes some time to load and render them
- we get ratelimited by GitHub pretty quickly
Pre-rendering the website would be awesome for solving this.
To do this, we need to:
- migrate the website to the static site generator
- I prefer hugo, but open to suggestions
- ensure that we fetch GitHub API only during the static site generation (instead of during the page loading)
- add a GitHub Action that will automatically build & deploy the static website on every push to the
main branch
Currently, we hit GitHub API every time we load the page to render the list of community members.
This has two issues:
Pre-rendering the website would be awesome for solving this.
To do this, we need to:
mainbranch