44 lines
500 B
Plaintext
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/
|