Files
the-nexus/DEVELOPMENT.md
Groq Agent a25c80f412
Some checks failed
Deploy Nexus / deploy (push) Has been cancelled
[groq] [QA][POLICY] Branch Protection + Mandatory Review Policy for All Repos (#918) (#990)
2026-04-07 09:04:20 +00:00

664 B

Development Workflow

Branching Strategy

  • Feature branches: feature/your-name/feature-name
  • Hotfix branches: hotfix/issue-number
  • Release branches: release/x.y.z

Local Development

  1. Clone repo: git clone https://forge.alexanderwhitestone.com/Timmy_Foundation/the-nexus.git
  2. Create branch: git checkout -b feature/your-feature
  3. Commit changes: git commit -m "Fix: your change"
  4. Push branch: git push origin feature/your-feature
  5. Create PR via Gitea UI

Testing

  • Unit tests: npm test
  • Linting: npm run lint
  • CI/CD: npm run ci

Code Quality

  • 100% test coverage
  • Prettier formatting
  • No eslint warnings