I have a program that is kind of like type-racer but for code instead of text, and I plan to have a folder on github with various challenges that are just pairs of text files, where the user has to turn one file into another
I'm planning on just fetching these files from github, but rather than fetching all the challenges which would be slow and im pretty sure would quickly ratelimit me, I want to have a single index.json file that has all the data of all the challenges, then the user picks one/gets one at random and I just fetch the files for that challenge
but I'm not sure what the right way to generate this index.json is? the way I'm planning, this isn't something packaged with the binary, it'll be fetched from github.