Development workflow and standards for FindU team
Check Current Sprint
Pull Latest Changes
git checkout dev git pull origin dev
Create Feature Branch
git checkout -b feature/add-scholarship-filters git checkout -b fix/profile-creation-bug git checkout -b chore/update-dependencies
main
dev
// Good: Clear naming, proper types interface StudentProfile { id: string; name: string; graduationYear: number; } // Good: Descriptive function names export function calculateMatchScore( student: StudentProfile, school: School ): number { // Implementation }
## What does this PR do? [Brief description] ## Type of change - Bug fix / New feature / Improvement ## How did you test this? - [ ] I tested this locally - [ ] Specific things I tested: [list them] ## Screenshots (if UI changes) [Add screenshots]
Automated Checks
Code Review
Testing
Merge & Deploy
Development
Staging
Production