From 81df32963f4b06b3cb5bae1b0c2847c5d1058785 Mon Sep 17 00:00:00 2001 From: Docker Build Date: Sat, 9 May 2026 10:38:30 -0400 Subject: [PATCH] chore(repo): move fork docs and logs under contrib/fractured-dev-extras Stock AzerothCore does not ship CLAUDE.md, BUILD-NATIVE.md, or local build logs at repo root. Park them under contrib/fractured-dev-extras/ so the repo root stays close to upstream and dev clutter is contained. - mv CLAUDE.md, BUILD-NATIVE.md -> contrib/fractured-dev-extras/ - mv build-worldserver.log + _build_paragon_*.log there (untracked / ignored) - add contrib/fractured-dev-extras/README.txt explaining the layout - gitignore: contrib/fractured-dev-extras/*.log Co-authored-by: Cursor --- .gitignore | 3 +++ .../fractured-dev-extras/BUILD-NATIVE.md | 0 CLAUDE.md => contrib/fractured-dev-extras/CLAUDE.md | 0 contrib/fractured-dev-extras/README.txt | 13 +++++++++++++ 4 files changed, 16 insertions(+) rename BUILD-NATIVE.md => contrib/fractured-dev-extras/BUILD-NATIVE.md (100%) rename CLAUDE.md => contrib/fractured-dev-extras/CLAUDE.md (100%) create mode 100644 contrib/fractured-dev-extras/README.txt diff --git a/.gitignore b/.gitignore index 5e9c713..a7ef367 100644 --- a/.gitignore +++ b/.gitignore @@ -123,3 +123,6 @@ local.properties # Local build artifacts (do not commit) build-worldserver.log + +# Local logs parked under contrib/fractured-dev-extras (see README there) +contrib/fractured-dev-extras/*.log diff --git a/BUILD-NATIVE.md b/contrib/fractured-dev-extras/BUILD-NATIVE.md similarity index 100% rename from BUILD-NATIVE.md rename to contrib/fractured-dev-extras/BUILD-NATIVE.md diff --git a/CLAUDE.md b/contrib/fractured-dev-extras/CLAUDE.md similarity index 100% rename from CLAUDE.md rename to contrib/fractured-dev-extras/CLAUDE.md diff --git a/contrib/fractured-dev-extras/README.txt b/contrib/fractured-dev-extras/README.txt new file mode 100644 index 0000000..571440b --- /dev/null +++ b/contrib/fractured-dev-extras/README.txt @@ -0,0 +1,13 @@ +Fractured / Paragon — non-runtime repo extras +============================================== + +This folder holds material that is not required to configure, build, or run +AzerothCore. Upstream AzerothCore does not ship these paths. + +Contents: +- BUILD-NATIVE.md — fork-specific native build notes (moved from repo root). +- CLAUDE.md — optional AI assistant context (moved from repo root). +- *.log — local build logs (moved from repo root when present). + +Operational files (docker-compose.override.yml, env/dist, modules/mod-paragon, +etc.) stay at their normal locations.