overhaul: migrated to tailwind css for css management, consolidated custom css, removed inline css, removed unneeded css, and otherwise improved page styling

This commit is contained in:
matt 2025-10-28 08:21:52 -07:00
parent f1e21873e7
commit b994978f60
81 changed files with 15784 additions and 2936 deletions

View file

@ -105,6 +105,9 @@ services:
WEB_TAG_PARALLEL: "1" # 1=parallelize tagging
WEB_TAG_WORKERS: "4" # Worker count when parallel tagging
# Card Image Caching (optional, uses Scryfall bulk data API)
CACHE_CARD_IMAGES: "1" # 1=download images to card_files/images/, 0=fetch from Scryfall API on demand
# Build Stage Ordering
WEB_STAGE_ORDER: "new" # new|legacy. 'new' (default): creatures → spells → lands → fill. 'legacy': lands → creatures → spells → fill
@ -250,5 +253,8 @@ services:
- ${PWD}/card_files:/app/card_files
- ${PWD}/config:/app/config
- ${PWD}/owned_cards:/app/owned_cards
# Mount code for hot-reload during development (templates, static files)
- ${PWD}/code/web/templates:/app/code/web/templates
- ${PWD}/code/web/static:/app/code/web/static
working_dir: /app
restart: unless-stopped