diff --git a/.beans/nuzlocke-tracker-9c8d--rebrand-to-another-nuzlocke-tracker-ant.md b/.beans/nuzlocke-tracker-9c8d--rebrand-to-another-nuzlocke-tracker-ant.md index 365f36b..ae9f8f0 100644 --- a/.beans/nuzlocke-tracker-9c8d--rebrand-to-another-nuzlocke-tracker-ant.md +++ b/.beans/nuzlocke-tracker-9c8d--rebrand-to-another-nuzlocke-tracker-ant.md @@ -1,25 +1,9 @@ --- # nuzlocke-tracker-9c8d title: Rebrand to Another Nuzlocke Tracker (ANT) -status: todo +status: in-progress type: task priority: normal created_at: 2026-02-10T14:46:09Z -updated_at: 2026-02-10T14:46:56Z +updated_at: 2026-02-17T18:45:38Z --- - -Adopt the new branding: **Another Nuzlocke Tracker**, abbreviated **ANT**. - -## Context - -- No existing Nuzlocke tracker uses this name or acronym. -- The name is self-deprecating/playful ("yet another...") and the acronym opens up mascot/logo possibilities (ant character). -- **Durant** (Steel/Bug, Gen V) is the mascot Pokémon — an actual ant Pokémon that ties the ANT acronym directly into the Pokémon universe. - -## Checklist - -- [ ] Update project name in package.json / config files -- [ ] Update page titles, meta tags, and any visible app name references -- [ ] Update README and any documentation with the new name -- [ ] Design or source a Durant-themed logo/icon -- [ ] Update favicon and app icons \ No newline at end of file diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index da81873..1929f1f 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -1,6 +1,6 @@ # Deployment -This document describes the deployment architecture and workflows for the nuzlocke-tracker. +This document describes the deployment architecture and workflows for ANT (Another Nuzlocke Tracker). ## Architecture Overview diff --git a/README.md b/README.md index c4a6033..584b072 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# nuzlocke-tracker +# ANT - Another Nuzlocke Tracker A full-stack Nuzlocke run tracker for Pokemon games. diff --git a/backend/.env.example b/backend/.env.example index dffd5a4..ea90daf 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -1,5 +1,5 @@ # Application settings -APP_NAME="Nuzlocke Tracker API" +APP_NAME="Another Nuzlocke Tracker API" DEBUG=true # API settings diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 3dc9d7f..2efe7c1 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,7 +1,7 @@ [project] -name = "nuzlocke-tracker-api" +name = "another-nuzlocke-tracker-api" version = "0.1.0" -description = "Backend API for Nuzlocke Tracker" +description = "Backend API for Another Nuzlocke Tracker" readme = "README.md" requires-python = ">=3.14" dependencies = [ diff --git a/backend/src/app/core/config.py b/backend/src/app/core/config.py index 5f2999b..9481456 100644 --- a/backend/src/app/core/config.py +++ b/backend/src/app/core/config.py @@ -8,7 +8,7 @@ class Settings(BaseSettings): extra="ignore", ) - app_name: str = "Nuzlocke Tracker API" + app_name: str = "Another Nuzlocke Tracker API" debug: bool = False # API settings diff --git a/frontend/index.html b/frontend/index.html index 02eb0db..b63df98 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,10 +3,10 @@
-Track your Nuzlocke runs with ease diff --git a/tools/import-pokedb/pyproject.toml b/tools/import-pokedb/pyproject.toml index e4af761..00caa13 100644 --- a/tools/import-pokedb/pyproject.toml +++ b/tools/import-pokedb/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "import-pokedb" version = "0.1.0" -description = "Convert PokeDB.org JSON data exports into nuzlocke-tracker seed format" +description = "Convert PokeDB.org JSON data exports into ANT seed format" requires-python = ">=3.12" dependencies = []