1# Rust build artifacts
2target/
3**/target/
4services/target/
5apps/*/target/
6
7# Node.js dependencies and build artifacts
8node_modules/
9**/node_modules/
10.turbo/
11**/.turbo/
12build/
13dist/
14.next/
15
16# Development and cache files
17.git/
18.gitignore
19**/.DS_Store
20*.log
21*.tmp
22*.temp
23
24# IDE and editor files
25.vscode/
26.idea/
27*.swp
28*.swo
29*~
30
31# Environment and config files
32.env
33.env.local
34.env.*.local
35
36# Database files
37*.db
38*.sqlite
39*.sqlite3
40
41# Test coverage
42coverage/
43**/coverage/
44
45# Temporary files
46tmp/
47temp/
48
49# SQLx offline query cache
50# Include workspace-level cache for monorepo builds
51# Uncomment the line below if you want to force online compilation
52# .sqlx/