Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
412f933
feat: add PR quality tools & time decay tracker system
May 9, 2026
e435e3d
docs: add merged PR analysis & style guide to GITTENSOR_STATUS
May 9, 2026
c082b2b
feat: PR body builder + gaya penulisan ala top merged PRs
May 9, 2026
572d1e0
feat: PR style system — issue checker, pre-submit checklist, branch/c…
May 9, 2026
630378b
feat: PR body v2 — Root Cause, Impact, Live Verification sections
May 9, 2026
0f25936
feat: PR body v3 — terminal evidence, how-to-verify, edge cases, revi…
alpurkan17 May 9, 2026
2fc3464
feat: PR dev tools — creator, issue scout, dashboard
alpurkan17 May 9, 2026
05a9195
feat: dev tools — gitlint, yamllint, setup script, .env template
alpurkan17 May 9, 2026
6f7bbab
fix: remove invalid verbose option from gitlint config
alpurkan17 May 9, 2026
cce2dfc
feat: repo weight tool + master repos validator
alpurkan17 May 9, 2026
53a2ea3
cleanup: remove private dev tools from public fork
alpurkan17 May 9, 2026
2be9b7d
feat: add PR quality, label watch, and merge predictor tools
May 11, 2026
356fce8
feat: add pre-submit gate + pre-push hook for PR quality
May 11, 2026
d7e0cf4
feat: add scoring checklist dependency for pre-submit gate
May 11, 2026
0f2ff8a
fix: clean up gate failures, handle non-existent PRs in merge predictor
May 11, 2026
4a8ce8c
feat: add conflict check, duplicate PR detect, and auto diff summary …
May 11, 2026
504726f
feat: add pr_flow orchestrator, body builder, and dashboard tools
May 11, 2026
b8febe7
cleanup: remove private PR tools from public fork
May 11, 2026
7cc26e4
fix: filter cross-repo closing references in PR timeline query (#1041)
May 11, 2026
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
41 changes: 12 additions & 29 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,29 +1,12 @@
# Options: finney (mainnet), test (testnet), local
SUBTENSOR_NETWORK=finney
NETUID=74 # 422 if using testnet
PORT=8099 # neuron axon port, must be accessible by public

# Options: info, debug, trace
LOG_LEVEL=info

# Path to bittensor wallets on host (default: ~/.bittensor/wallets)
WALLET_PATH=~/.bittensor/wallets
WALLET_NAME=default
HOTKEY_NAME=default

# ******* VALIDATOR VARIABLES *******
# Weights & Biases API key for logging
# Signup https://wandb.ai/site for a key
WANDB_API_KEY=
# GitHub PAT for validator API calls
GITTENSOR_VALIDATOR_PAT=
# Optional custom name for wandb logging
WANDB_VALIDATOR_NAME=vali

# validator database settings (for gittensor validator/dashboard)
STORE_DB_RESULTS=false
# DB_HOST=
# DB_PORT=
# DB_NAME=
# DB_USER=
# DB_PASSWORD=
# GITTENSOR ENVIRONMENT VARIABLES
# Copy to .env (never commit .env!)
# Usage: source .env OR python-dotenv load

# GitHub Personal Access Token
export GITHUB_PAT="ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

# Optional: Override default wallet
export GT_WALLET_NAME="default"
export GT_WALLET_HOTKEY="default"
export GT_NETUID="74"
export GT_NETWORK="finney"
Loading