54 lines
684 B
Plaintext
54 lines
684 B
Plaintext
# Rust build artifacts
|
|
target/
|
|
Cargo.lock
|
|
|
|
# Node.js dependencies and build artifacts
|
|
admin-ui/node_modules/
|
|
admin-ui/dist/
|
|
admin-ui/pnpm-lock.yaml
|
|
admin-ui/tsconfig.tsbuildinfo
|
|
admin-ui/.vite/
|
|
|
|
# Version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# IDE and editor files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Claude/AI
|
|
.claude/
|
|
CLAUDE.md
|
|
AGENTS.md
|
|
|
|
# CI/CD
|
|
.github/
|
|
|
|
# Documentation and examples
|
|
*.md
|
|
README.md
|
|
config.example.json
|
|
credentials.example.*.json
|
|
|
|
# Development and test files
|
|
src/test.rs
|
|
src/debug.rs
|
|
test.json
|
|
tools/
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local configuration (keep templates only)
|
|
config.json
|
|
credentials.json
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose*.yml |