Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# GitHub push + PR settings (template)
# Copy this to .env and fill real values:
# cp .env.example .env

# Required: token with repo scope (classic) or fine-grained repo contents:write + pull_requests:write.
GITHUB_TOKEN=ghp_replace_me

# Required: your fork remote URL (the repo you own).
FORK_REMOTE_URL=https://github.com/your-username/opencode-multi-auth-codex.git

# Optional: if you prefer a custom remote name.
FORK_REMOTE_NAME=fork

# Required: branch to push.
PUSH_BRANCH=feature/multi-auth-admin-review

# Required: base branch for PR.
PR_BASE_BRANCH=main

# Optional git identity (used if your global git identity is not set).
GIT_AUTHOR_NAME=Your Name
GIT_AUTHOR_EMAIL=you@example.com

# Optional PR metadata.
PR_TITLE=feat: improve rotation behavior, force mode, and dashboard strategy UX
PR_BODY_FILE=docs/ADMIN_MERGE_BRIEF.md
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ node_modules/
*.log
.npmrc
node
.env
.env.*
!.env.example
721 changes: 721 additions & 0 deletions IMPLEMENTATION_PLAN.md

Large diffs are not rendered by default.

Loading