-
Notifications
You must be signed in to change notification settings - Fork 1
feat: Implement chess game server and web interface #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ezekielelvis
wants to merge
9
commits into
master
Choose a base branch
from
feat-chess-game-example
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+2,564
−0
Conversation
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
ggleyzer
requested changes
Jan 6, 2026
ggleyzer
reviewed
Jan 6, 2026
ggleyzer
reviewed
Jan 6, 2026
mrcompator
reviewed
Jan 6, 2026
mrcompator
reviewed
Jan 6, 2026
- Added chessDB module for game state management, including GameRecord and ChessSchema. - Developed chessLogic module to handle move validation, game status detection, and AI opponent logic. - Created Gradle build configuration for server and webapp modules. - Implemented basic webapp structure with HTML and CSS for the chess interface. - Added JavaScript functionality for handling user interactions and communicating with the server. - Included Gradle wrapper for consistent build environment.
274b214 to
52a33c2
Compare
ggleyzer
approved these changes
Jan 8, 2026
Contributor
ggleyzer
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good; please test it works and merge
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.
This pull request adds Gradle build system support for both the
bankingandchess-gameprojects. It introduces the necessary Gradle wrapper scripts and configuration files, enabling consistent and portable builds across different environments. Additionally, a minimal build configuration is added for thechess-gameproject.The most important changes are:
Gradle Wrapper and Build Configuration (for both projects):
gradlewandgradlew.batscripts to bothbankingandchess-gamedirectories, allowing users to build the projects without requiring a local Gradle installation. [1] [2]gradle/wrapper/gradle-wrapper.propertiesfiles specifying Gradle 9.0.0 as the build tool version for both projects.Project-specific Build Configuration:
build.gradle.ktsfor thechess-gameproject, setting the group and version.Editor Configuration:
.vscode/settings.jsonto disable automatic Java build configuration updates in VS Code, likely to avoid conflicts with Gradle-based builds.- Added chessDB module for game state management, including GameRecord and ChessSchema.