From a26b7d1f67b54a62ed39f1e942fb67de348f03fe Mon Sep 17 00:00:00 2001 From: Ryan Chen Date: Mon, 27 Jul 2026 10:07:00 -0400 Subject: [PATCH] Rename project to bikeslop Co-Authored-By: Claude Sonnet 4.6 --- README.md | 8 ++++---- app.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 245382a..8bcef40 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# gpxport +# bikeslop A local web app for visualising Garmin cycling GPX files with AI coaching insights powered by a local LLM. -![screenshot placeholder](https://placehold.co/900x500/0f1117/4f8ef7?text=gpxport) +![screenshot placeholder](https://placehold.co/900x500/0f1117/4f8ef7?text=bikeslop) ## Features @@ -23,8 +23,8 @@ A local web app for visualising Garmin cycling GPX files with AI coaching insigh ```bash # 1. Clone and install dependencies -git clone https://github.com/yourname/gpxport -cd gpxport +git clone https://git.torrtle.co/ryan/bikeslop +cd bikeslop uv sync # 2. Drop your GPX files into garmin_gpx_exports/ diff --git a/app.py b/app.py index affd5bd..d42aacc 100644 --- a/app.py +++ b/app.py @@ -20,7 +20,7 @@ logging.basicConfig( format="%(asctime)s %(levelname)s %(name)s: %(message)s", datefmt="%H:%M:%S", ) -log = logging.getLogger("gpxport") +log = logging.getLogger("bikeslop") GPX_DIR = Path(__file__).parent / "garmin_gpx_exports" INSIGHTS_FILE = Path(__file__).parent / "insights.json" diff --git a/pyproject.toml b/pyproject.toml index 251fef9..ae8a950 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "gpxport" +name = "bikeslop" version = "0.1.0" description = "GPX ride viewer with Leaflet maps, Chart.js profiles, and local-LLM coaching insights" readme = "README.md"