Relicense project under GPL-3.0-or-later

Replaces the previous MIT license with GPL-3.0-or-later. Adds the full
GPL-3.0 license text at LICENSE, updates pyproject.toml metadata and
classifier, updates the README, and adds SPDX-License-Identifier headers
to all first-party server Python and client JavaScript sources.
Third-party anime.min.js is left untouched.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken
2026-04-05 09:26:06 -04:00
parent ea34ddf8e4
commit bc9445f06e
70 changed files with 756 additions and 12 deletions

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""Services package for Golf game V2 business logic."""
from .recovery_service import RecoveryService, RecoveryResult

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Admin service for Golf game.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Authentication service for Golf game.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Email service for Golf game authentication.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
PostgreSQL-backed game logging for AI decision analysis.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Matchmaking service for public skill-based games.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Redis-based rate limiter service.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Glicko-2 rating service for Golf game matchmaking.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Game recovery service for rebuilding active games from event store.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Replay service for Golf game.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Spectator manager for Golf game.

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Stats service for Golf game leaderboards and achievements.