Files
xevion.dev/.dockerignore
Xevion 9de3c84f00 feat: add Docker containerization with multi-stage build
Includes .dockerignore, Dockerfile with cargo-chef caching, and Justfile commands for building/running containerized app. Updates console-logger to support both JSON and pretty-printed logs based on LOG_JSON env var.
2026-01-04 20:23:11 -06:00

28 lines
281 B
Plaintext

# Ignore build artifacts and dev files
target/
web/node_modules/
web/.svelte-kit/
web/build/
# VCS
.git/
.gitignore
# IDE
.vscode/
.idea/
*.swp
*.swo
# Logs
*.log
# OS
.DS_Store
Thumbs.db
# Don't ignore these - we need them
!web/build/client
!web/build/server
!web/build/*.js