From f51d8554ab9296019a77b07afe3730c26aa6c4d7 Mon Sep 17 00:00:00 2001 From: Deckard Date: Sat, 4 Oct 2025 02:13:04 -0400 Subject: [PATCH] docs --- readme.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0d385fa..4a5df79 100644 --- a/readme.md +++ b/readme.md @@ -117,7 +117,21 @@ acore-compose/ ├── scripts/ # Deployment, cleanup, and backup automation ├── storage/ # Unified storage root (configurable via STORAGE_ROOT) │ └── azerothcore/ # All persistent data (database, configs, tools) -│ └── backups/ # Database backups (see backups documentation for sub-folder listing) +│ ├── backups/ # Database backups with automated retention +│ │ ├── hourly/ # Hourly backup snapshots +│ │ └── daily/ # Daily backup snapshots +│ ├── cache/ # Application cache and temporary files +│ ├── config/ # Server configuration files (.conf) +│ ├── data/ # Game client data (maps, vmaps, mmaps, dbc) +│ │ ├── Cameras/ # Camera configuration files +│ │ ├── dbc/ # Database Client files +│ │ ├── maps/ # Game world maps +│ │ ├── mmaps/ # Movement maps for pathfinding +│ │ └── vmaps/ # Visual maps for line-of-sight +│ ├── install-markers/ # Installation state tracking +│ ├── logs/ # Server log files +│ ├── modules/ # AzerothCore modules and extensions +│ └── mysql-data/ # MySQL database files └── readme.md # This documentation ```