Add GolfMatch web app for finding local golf partners#1430
Open
tayclem321 wants to merge 3 commits intoruvnet:mainfrom
Open
Add GolfMatch web app for finding local golf partners#1430tayclem321 wants to merge 3 commits intoruvnet:mainfrom
tayclem321 wants to merge 3 commits intoruvnet:mainfrom
Conversation
Full-stack Node.js/Express app with SQLite backend and vanilla JS SPA frontend. Features: - Player discovery with filters (city, state, handicap range, playing frequency) - Handicap Index displayed prominently on each player card - Preferred courses listed per player for course compatibility matching - User registration/login with JWT authentication - Profile management (handicap, location, bio, preferred courses) - Connection request system with accept/decline and partner tracking - 12 seeded demo players across Austin, TX area - Mobile-responsive golf-themed UI Run: cd src/golf-app && npm install && npm start Demo: james@example.com / password123 https://claude.ai/code/session_01NhPetqzsiRe5XKWfLFvJcd
better-sqlite3 requires C++ build tools (Visual Studio) to compile on Windows. Switching to sql.js which is pure JavaScript/WASM — no compilation needed, works on all platforms including Windows without any build tools. https://claude.ai/code/session_01NhPetqzsiRe5XKWfLFvJcd
Adds web app manifest and SVG icon so the app can be installed as a standalone desktop application directly from Chrome or Edge. https://claude.ai/code/session_01NhPetqzsiRe5XKWfLFvJcd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces a complete web application for GolfMatch, a platform that helps golfers find and connect with partners in their local area based on handicap, skill level, and preferred courses.
Key Changes
Frontend (HTML/CSS/JavaScript)
Backend (Node.js/Express)
Database (SQLite)
Notable Implementation Details
https://claude.ai/code/session_01NhPetqzsiRe5XKWfLFvJcd