- Add @source for shop_components/ directory in app-shop.css (Tailwind wasn't scanning sub-modules after the refactor, dropping ~73 utilities) - Remove overly aggressive .dockerignore rules that excluded mockup image variants needed by the responsive_image component - Seed default theme settings on first boot via Release.seed_defaults/0 in the supervision tree (seeds.exs doesn't run in releases) - Fix PDP gallery images for mock data by appending -1200.webp to bare mockup base paths - Update fly.toml format from fly launch Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
45 lines
508 B
Plaintext
45 lines
508 B
Plaintext
# Build artifacts
|
|
_build/
|
|
deps/
|
|
.elixir_ls/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Test and dev
|
|
test/
|
|
.formatter.exs
|
|
.credo.exs
|
|
.dialyzer_ignore.exs
|
|
|
|
# Database files
|
|
*.db
|
|
*.db-wal
|
|
*.db-shm
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
.dockerignore
|
|
docker-compose*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# CI/docs
|
|
CLAUDE.md
|
|
PROGRESS.md
|
|
ROADMAP.md
|
|
docs/
|
|
|
|
# Generated image variants (regenerated on startup from DB)
|
|
priv/static/image_cache/
|
|
|
|
# Mockup .gz files (phx.digest creates its own inside the builder)
|
|
priv/static/mockups/*.gz
|