htknow/.dockerignore
Defeng fe8f0a875a
Some checks failed
CI / Frontend (Vite) (push) Successful in 24s
CI / Docker Release Tar (push) Has been skipped
CI / Backend (Rust) (push) Failing after 10m15s
Initial project import
2026-07-24 10:28:31 +08:00

44 lines
500 B
Plaintext

# Rust build artifacts (except the release binary we need)
target/*/incremental
target/*/build
target/*/deps
target/*/examples
target/*/.fingerprint
*.pdb
# Git
.git
.gitignore
# IDE
.vscode
.idea
*.swp
*.swo
*~
# Local data (will be mounted as volumes in production)
data/
# Logs
*.log
# OS files
.DS_Store
Thumbs.db
# Documentation
README.md
docs/
# CI/CD
.gitea
.github
.gitlab-ci.yml
# Development files
clear.sh
# Frontend is embedded into the Rust binary before docker build
frontend/