Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
adb8e4a
feat: implement complete MVP for Summit rehab platform
CarsonL15 Oct 30, 2025
220ca81
updated .gitignore
CarsonL15 Oct 31, 2025
cac90b8
Merge pull request #1 from CarsonL15/chore/repoStructure
CarsonL15 Oct 31, 2025
7416126
feat: complete Phase 2 - exercise customization and fixes
CarsonL15 Oct 31, 2025
3fe95d5
Merge pull request #2 from CarsonL15/feat/phase-two
CarsonL15 Oct 31, 2025
3d9f5b3
phase 2
CarsonL15 Nov 13, 2025
6a3a7e9
quick fix
CarsonL15 Nov 13, 2025
7098f2b
fixed docs
CarsonL15 Nov 13, 2025
3e01136
Merge pull request #3 from CarsonL15/feat/ui
CarsonL15 Nov 13, 2025
a93cc8b
fire: create fire-app structure and components
CarsonL15 Nov 13, 2025
b192848
feat: complete monorepo setup with fire-app
CarsonL15 Nov 13, 2025
ac16c6c
feat: transform project into monorepo with clinic and fire apps
CarsonL15 Nov 13, 2025
db51bc4
docs for tomorrow
CarsonL15 Nov 13, 2025
755d2f2
feat: add comprehensive injury tracking and prevention system
CarsonL15 Nov 19, 2025
a273d15
Merge pull request #4 from CarsonL15/feat/phase-three
CarsonL15 Nov 19, 2025
b140748
fix
CarsonL15 Nov 19, 2025
fb02386
chore: enable TypeScript build error bypass for deployment
CarsonL15 Nov 19, 2025
2a70471
fix: prevent browser dark mode color inversion on mobile
CarsonL15 Nov 19, 2025
2175da1
fix: remove white Safari UI bars on mobile
CarsonL15 Nov 19, 2025
64e4354
docs: update all documentation with deployment details
CarsonL15 Nov 19, 2025
6285c00
fix: change Total Cost Impact to static .7k value
CarsonL15 Nov 19, 2025
8c20ad4
idk
CarsonL15 Dec 1, 2025
c8d0ec9
feat: add clinic role for FMS assessments and user management
CarsonL15 Dec 1, 2025
7e85515
fixed
CarsonL15 Dec 1, 2025
295c4ec
Merge pull request #6 from CarsonL15/feat/clinic
CarsonL15 Dec 1, 2025
bd3711b
feat: chief dashboard enhancements and clinic updates
CarsonL15 Jan 21, 2026
fde85df
Merge pull request #7 from CarsonL15/feat/jan
CarsonL15 Jan 21, 2026
960d6eb
feat: clinic series builder, analytics enhancements, injury tracking …
CarsonL15 Jan 21, 2026
7e0b07c
Merge pull request #8 from CarsonL15/feat/jan20
CarsonL15 Jan 21, 2026
d01428e
feat: firefighter welcome, FMS colors, injury metrics fix
CarsonL15 Jan 28, 2026
63a1008
Merge pull request #9 from CarsonL15/feat/jan27
CarsonL15 Jan 28, 2026
d4726d1
feat: demo polish - video embeds, Day A/B logic, UI fixes
CarsonL15 Feb 2, 2026
11e687a
Merge pull request #10 from CarsonL15/feat/feb1
CarsonL15 Feb 2, 2026
3ca03b3
feat: analytics improvements, UI fixes, and bug fixes
CarsonL15 Feb 4, 2026
6927262
fix: remove Complete Again button from exercise page
CarsonL15 Feb 4, 2026
9e3e4f3
Merge pull request #11 from CarsonL15/feat/feb3
CarsonL15 Feb 4, 2026
ecf492c
fix: remove Location column from injury log
CarsonL15 Feb 4, 2026
811084a
Merge pull request #13 from CarsonL15/feat/feb4
CarsonL15 Feb 4, 2026
d6c19ab
fix: remove individual firefighter names from all chief pages
CarsonL15 Feb 25, 2026
d627338
Merge pull request #14 from CarsonL15/feat/feb24
CarsonL15 Feb 25, 2026
dc2f903
feat: production hardening - security headers, error boundaries, stru…
CarsonL15 Apr 9, 2026
3fd49c0
chore: trigger rebuild
CarsonL15 Apr 9, 2026
6eddcac
fix: lazily initialize Resend client to prevent build-time crash
CarsonL15 Apr 9, 2026
8ceec6c
Merge pull request #15 from CarsonL15/feat/feb24
CarsonL15 Apr 9, 2026
df40124
feat: add admin dashboard with role-switching, fix Resend build crash
CarsonL15 Apr 9, 2026
aaea3b8
fix: redirect assessor to dashboard after assessment, fix email riskL…
CarsonL15 Apr 9, 2026
54e84c8
fix: replace expiring magic link with login page link in results email
CarsonL15 Apr 9, 2026
b4093d0
fix: populate assigned_by and fms_score_id in series assignments
CarsonL15 Apr 9, 2026
17bc6c4
Merge pull request #16 from CarsonL15/feat/feb24
CarsonL15 Apr 9, 2026
7a58a85
fix: rename Demo Login button to Sign In on landing page
CarsonL15 Apr 10, 2026
cd5f9ab
Merge pull request #17 from CarsonL15/feat/feb24
CarsonL15 Apr 10, 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
62 changes: 62 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
**/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage
**/coverage

# next.js
/.next/
**/.next/
/out/

# production
/build
/dist

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# local env files
.env*.local
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

# IDE / Editor
.vscode/
.idea/
*.swp
*.swo
*~

# OS
Thumbs.db

# Supabase
.supabase/

# Optional: Docs that might contain sensitive info
# CLAUDE.old.md
Loading