Open
Conversation
When frontend_multi_user starts, the "Flask app started" EventItem now includes the short git commit hash in both the message and context, making it easy to identify which version is running and rollback if needed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The container has no .git directory, so the runtime git fallback always returned "unknown". Now the hash is passed as a Docker build arg (GIT_COMMIT_HASH) and baked into the PLANEXE_GIT_COMMIT_HASH env var. The Python code checks this env var first before falling back to git. Usage: GIT_COMMIT_HASH=$(git rev-parse --short HEAD) docker compose build Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Railway auto-injects RAILWAY_GIT_COMMIT_SHA for GitHub-triggered deploys. The Dockerfile now accepts it and prefers it over the manual GIT_COMMIT_HASH arg, so the commit hash works on Railway with zero configuration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
frontend_multi_userstarts, the "Flask app started" EventItem now includes the short git commit hash in both the message (e.g.Flask app started (commit 8f72795)) and the event context (commit_hashfield).Test plan
frontend_multi_userand verify the startup EventItem in the admin panel shows the commit hash"unknown"🤖 Generated with Claude Code