You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Migrated from augurlabs/augur#3594
Originally opened by @MoralCode on 2026-01-16
Currently Augur is largely dependent on the github API (since that was what it was originally written for)
When considering support for new platforms, there are lots of ways we need to be flexible/things we need to do to account for other platforms that dont quite work the same as github. For example:
We need underlying support for the API of the platform (i.e. github/gitlab endpoint paths, this is the obvoius one)
We need support for changing the domain we use to make requests with that api implementation (i.e. some platforms have multiple instances, i.e. selfhosted forgejo, github/github enterprise Add option to use Github Enterprise API for api key checks #110, etc)
We need to associate API keys with the combination of domain and platform that is in use (someones GHE api key prob wont work on regular github)
Different platforms may have different specifics for handling API keys (i.e. github does rate limits for graphql and REST independently for the same key)
We should make sure that our various interfaces show information about all of the platforms (notably the CLI for checking the rate limits left on all configured keys)
Having an admin panel in the web ui that can manage keys is probably going to help users a lot.
This is an absolutely huge task thats going to need to be broken down pretty small and done very strategically to keep us on track for adding more platforms this year.
Note
Migrated from augurlabs/augur#3594
Originally opened by
@MoralCodeon 2026-01-16Currently Augur is largely dependent on the github API (since that was what it was originally written for)
When considering support for new platforms, there are lots of ways we need to be flexible/things we need to do to account for other platforms that dont quite work the same as github. For example:
Also
This is an absolutely huge task thats going to need to be broken down pretty small and done very strategically to keep us on track for adding more platforms this year.