Fix #48: Make Clyde ready to be deployed by anyone#50
Merged
Conversation
- Add CLAYDE_GIT_NAME and CLAYDE_GIT_EMAIL settings to config.py; git_name defaults to github_username via effective_git_name property - Remove hardcoded defaults from github_username and whitelisted_users - Move git identity config from Dockerfile build-time RUN to a runtime entrypoint.sh that reads env vars at container startup - Update config.env.template with generic placeholders and new fields - Update CLAUDE.md to remove instance-specific values and apprise references - Update README.md with a "Deploying Your Own Instance" section and add CLAYDE_GIT_NAME/CLAYDE_GIT_EMAIL to the configuration table - Update tests to reflect removed hardcoded defaults and add coverage for the effective_git_name property Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
max-tet
requested changes
Mar 20, 2026
…gration note - CLAUDE.md: change "Fine-grained PAT" to "Classic PAT with full repo scope" - CLAUDE.md: remove the "Interactive Issue Work (gh-issue.md)" section entirely - README.md: change "fine-grained PAT" to "classic personal access token with full repo scope" - README.md: remove migration note (to be posted as a PR comment instead) Co-Authored-By: Claude Sonnet 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.
Closes #48
Made Clayde deployable by anyone by removing all hardcoded instance-specific values (name, email, GitHub username, whitelisted users, ntfy URL). Added CLAYDE_GIT_NAME and CLAYDE_GIT_EMAIL settings to config.py with CLAYDE_GIT_NAME defaulting to CLAYDE_GITHUB_USERNAME. Replaced build-time git config in Dockerfile with a runtime entrypoint.sh script. Updated config.env.template with generic placeholders. Removed apprise/ntfy references from CLAUDE.md and gh-issue.md. Added a 'Deploying Your Own Instance' section to README.md with step-by-step instructions for new deployers including GitHub bot account creation, PAT generation, and config setup. Updated tests to match new empty defaults.