3e006a1e94
Build and Deploy / build-and-push (push) Successful in 4m36s
Removes the hand-rolled analytics endpoint and SQLite event table in favour of Matomo — a self-hosted, full-featured analytics platform. k8s: - Deploy MariaDB 11 + Bitnami Matomo 5 in the solitaire namespace - Route analytics.aleshym.co ingress to the Matomo service - Remove Datasette sidecar and its BasicAuth middleware/secret - Remove the analytics port from the solitaire-server Service Rust: - Replace AnalyticsClient (custom HTTP endpoint) with MatomoClient (Matomo HTTP Tracking API bulk endpoint); maps game events to Matomo categories - Add matomo_url + matomo_site_id fields to Settings (serde default → None/1) - Privacy toggle in Settings now activates when matomo_url is set (not tied to SyncBackend::SolitaireServer) - Remove POST /api/analytics route from solitaire_server Web: - Add Matomo JS tracking snippet to game.html (/play page) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
425 B
YAML
14 lines
425 B
YAML
# Credentials for MariaDB and the Matomo admin account.
|
|
# Regenerate with: python3 -c "import secrets; print(secrets.token_urlsafe(18))"
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: matomo-secret
|
|
namespace: solitaire
|
|
stringData:
|
|
MYSQL_ROOT_PASSWORD: "jspRn-QU18sZhB55FR-JfrMJ"
|
|
MYSQL_DATABASE: matomo
|
|
MYSQL_USER: matomo
|
|
MYSQL_PASSWORD: "ZxDp648UuL5fsN7eQI23E7ue"
|
|
MATOMO_ADMIN_PASSWORD: "J6QUtbroK4Z7zao4Dnl0J7e2"
|