scorecard/.gitignore
Naveen db81680172
Feat-Implement httpcache middleware for GitHub API (#203)
The GitHub API supports conditional requests
https://docs.github.com/en/rest/overview/resources-in-the-rest-api#conditional-requests

https://github.com/google/go-github supports Conditional requests
https://github.com/google/go-github#conditional-requests

As we are scaling more and more projects this would add a lot of value.

Initial run fetches information using `httpcache` as a middleware,
which caches the HTTP response initially in a large disk (PVC),
probably move to Redis later as a cache instead of disk.

Subsequent `cron runs` will utilize the `httpcache` for checking content modification and
load it from the cache if it isn't modified, which reduces the hitting the
Rate Limit of the GitHub API.
2021-02-22 17:18:28 +00:00

28 lines
312 B
Plaintext

# Scorecard binary.
scorecard
# Binaries for programs and plugins.
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`.
*.test
results.json
# Output of the go coverage tool, specifically when used with LiteIDE.
*.coverprofile*
# IDE directories.
.vscode/
*.iml
.idea
# tools
bin
cache