The public dissemination platform for the Google REACH GenAI Consortium (Workstream 5), built by a Morehouse student cohort for INSPIRE 2026.
New here? Start with the onboarding guide: https://morehouse-supercomputing.github.io/reach-website/
Week 1 (ideation): we plan together in PLAN.md before we build. Edit your role's section there on a branch, then open a Pull Request.
Click your name to see your task list. Tasks are GitHub Issues, grouped by milestone.
| Role | Student | Your tasks |
|---|---|---|
| Front-End Developer | Chase Clayton | Front-End issues |
| Back-End Developer | Kanayo Egwuekwe-Maxey | Back-End issues |
| Data Visualization & Research Lead | De'Andre Randolph | Data Viz issues |
| UX/UI Designer | James Moore IV | UX/UI issues |
| Marketing & Communications Lead | Wendell Robinson | Marketing issues |
- Tasks are Issues, labeled with your role.
- Milestones group the tasks into phases (M0 through M4). The milestones line up with the pay schedule, so finishing a milestone and getting paid are the same moment.
- Your weekly output is checked in every Monday (see the onboarding guide).
Meeting agendas and notes live in meetings/.
Nobody pushes to main but Dr. Scruse, so the live site never breaks. You never merge your own work.
For a normal task (most of the time):
- Branch off
main, named for your work, likedata-viz/heatmap. - Commit, push your branch, and open a Pull Request into
mainwith Dr. Scruse as reviewer. - Your PR gets a live preview link. Check it.
- Dr. Scruse reviews and merges. The branch auto-deletes after merge.
When several people build one feature together (like the live demo):
Share one feature branch instead of each working alone. Everyone works on the same branch, pulls before pushing, and it goes to main as a single Pull Request once it is done. There is also a structured option for bigger features where each person opens a Pull Request into the shared branch first.
The golden rule on any shared branch: run git pull before you git push, every time.
Full step-by-step workflow, shared-branch options, and conflict handling are in CONTRIBUTING.md.
web/ the Next.js site (front-end, UI, content)
data/ ingestion + schema (back-end)
infra/ Cloud Run, IAM, deploy config
docs/ onboarding guide and project docs
This repo is public and holds code only.
- Data (benchmark results, drafts, partner materials) lives in a private Google Cloud Storage bucket, read at runtime.
- Secrets (API keys, the values in
.env) stay on your own machine and are set as environment variables in the host, backed by Google Secret Manager. They never go in the repo or in Cloud Storage.