chore: harden php8 compatibility, optimize installer/croppers, and refresh docs/admin ux

This commit is contained in:
levi
2026-03-14 16:50:27 -03:00
parent 8a91e89644
commit a0ef06a35f
29 changed files with 871 additions and 418 deletions
+13 -6
View File
@@ -1,11 +1,18 @@
# MySQL Database Configuration
MYSQL_ROOT_PASSWORD=rootpassword
MYSQL_DATABASE=travian
MYSQL_USER=travianz
MYSQL_PASSWORD=travianzpass
# MariaDB Database Configuration (preferred)
MARIADB_ROOT_PASSWORD=rootpassword
MARIADB_DATABASE=travian
MARIADB_USER=travianz
MARIADB_PASSWORD=travianzpass
# Legacy compatibility keys (optional)
# These keys inherit directly from MARIADB_* to avoid duplicate values.
MYSQL_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD}
MYSQL_DATABASE=${MARIADB_DATABASE}
MYSQL_USER=${MARIADB_USER}
MYSQL_PASSWORD=${MARIADB_PASSWORD}
# Application Configuration
# These values will be used during the installation wizard
# These values will be used during the installation wizard.
# Hostname for database connection (use 'db' when running in Docker)
DB_HOST=db
DB_PORT=3306