Add git version to /api endpoint response #7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds the current git revision hash to the
/apiendpoint response, allowing clients to identify which version of the code is running.Changes
API Response
The
/apiendpoint now includes aversionfield at the root level of the response:{ "version": "779cdb5", "http://example.com/api": { "description": "List all APIs" }, "http://example.com/api/:id/manifest.json": { "description": "Generate readium manifest for resource", "args": {"source": ["ia", "ol"], "format": ["epub", "pdf"]} } }Implementation Details
prs/routes/api.py:
get_git_revision_short_hash()function that usessubprocess.check_output()to executegit rev-parse --short HEADNoneif git is unavailablesubprocess)apis()endpoint to call this function and include the version in the responsedocker/Dockerfile:
apt-getwith--no-install-recommendsto minimize image sizeBenefits
nullif git is not available instead of crashingThe
.gitdirectory is already mounted in the container via thecompose.yamlvolume mapping (.:/app), so the git repository is accessible at runtime.Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.