mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 10:26:52 -06:00
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.
28 lines
281 B
Plaintext
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
|