-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
37 lines (31 loc) · 1.43 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Ignore Rust build output and artifacts generated by Cargo in the `/target` directory
/target/**
# Ignore specific debug and release build directories across all project folders
**/debug/
**/release/
# Ignore Cargo-specific build and dependency files
/.cargo/ # Cargo configuration directory
/Cargo.lock # Dependency lockfile, not needed for libraries, but included for applications
# Ignore editor and OS-specific temporary files
*.swp # Swap files generated by Vim or other editors
*.DS_Store # MacOS-specific metadata file
*.log # Log files, often generated during debugging
# Ignore Rust-specific compilation artifacts and temporary files
*.rlib # Rust library files
*.dSYM # Debug information for MacOS
*.exe # Executables on Windows
*.dll # Dynamic link libraries on Windows
*.so # Shared objects (Linux/Unix)
*.dylib # Dynamic libraries on MacOS
*.stackdump # Stack dumps on Windows (crash logs)
*.profraw # Profile-guided optimization data, generated during profiling
# Ignore any other target directories (including for the api-gateway and ingress module)
api-gateway/backend/target/**
ingress-controller/target/**
# Specific rules for api-gateway/frontend
api-gateway/frontend/node_modules/
api-gateway/frontend/dist/
api-gateway/frontend/build/
api-gateway/frontend/npm-debug.log*
api-gateway/frontend/yarn-debug.log*
api-gateway/frontend/yarn-error.log*