Development Workflow - AdemKao/github-mcp-demo GitHub Wiki
Development Workflow
Git Workflow
-
Branch Strategy
master
- Production ready codedevelop
- Development branchfeature/*
- New featuresfix/*
- Bug fixes
-
Development Process
- Create a new branch from
develop
- Implement changes
- Write tests
- Create pull request
- Code review
- Merge after approval
- Create a new branch from
Code Standards
- Follow ESLint configuration
- Write meaningful commit messages
- Document code changes
- Update tests
Testing
- Unit tests for components
- Integration tests for API
- End-to-end testing
- Test coverage requirements
Deployment
-
Staging Environment
- Automatic deployment from
develop
- QA testing
- Performance testing
- Automatic deployment from
-
Production Environment
- Deploy from
master
- Version tagging
- Rollback procedures
- Deploy from