-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
122 lines (108 loc) · 4.14 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# --- Common Files ---
*.log # Log files
*.tmp # Temporary files
*.swp # Swap files (Vim)
*.bak # Backup files
*.orig # Merge conflict backups
*.lock # Lock files
# --- IntelliJ IDEA / PyCharm ---
.idea/ # IntelliJ project settings
*.iml # IntelliJ module files
*.iws # IntelliJ workspace files
out/ # Build output directories
# --- Visual Studio Code ---
.vscode/ # VSCode project settings
*.code-workspace # VSCode workspace files
*.code-workspace.backup
# --- Java ---
*.class # Compiled class files
*.jar # Java JAR files
*.war # Web application archive
*.ear # Enterprise application archive
*.jmod # Java Module files
target/ # Maven / Gradle build output
build/ # Gradle build output
out/ # Eclipse and other build output
.mvn/ # Maven wrapper files
!**/src/main/**/META-INF/
!**/src/main/**/resources/
!**/src/test/**/resources/
# --- TypeScript / Angular ---
node_modules/ # Node.js dependencies
dist/ # Build output directory
coverage/ # Test coverage reports
tmp/ # Temporary files
npm-debug.log* # NPM debug log files
yarn-debug.log* # Yarn debug log files
yarn-error.log* # Yarn error log files
pnpm-debug.log* # PNPM debug log files
.angular/ # Angular specific files
# --- Python ---
__pycache__/ # Python bytecode cache
*.py[cod] # Compiled Python files
*.pyo # Optimized Python files
*.pyd # Windows Python extension
*.egg # Python Egg files
*.egg-info/ # Python Egg metadata
.eggs/ # Python Eggs directory
dist/ # Build distribution files
build/ # Build directory
*.env # Environment files
env/ # Virtualenv directory
venv/ # Virtualenv directory
.mypy_cache/ # MyPy cache
.pytest_cache/ # Pytest cache
.pyre/ # Pyre type checking cache
# --- Terraform ---
*.tfstate # Terraform state files
*.tfstate.* # Terraform state backups
.terraform/ # Terraform modules directory
.terraform.lock.hcl # Terraform lock file
# --- Kubernetes ---
k8s-*.yaml # Kubernetes manifests
*.kubeconfig # Kubernetes config files
*.kube # Kubernetes config directory
*.kubeconfig.bak
# --- Tofu ---
.tofu/ # Tofu configuration
# --- Docker ---
.dockerignore # Docker ignore file
docker-compose.override.yml # Docker Compose overrides
docker-compose.local.yml # Local Docker Compose
docker-compose.dev.yml # Development Docker Compose
*.dockerfile # Dockerfiles
# --- Logs & Temp Files ---
*.pid # Process ID files
*.seed # Seed files
*.pid.lock # PID lock files
temp/ # Temporary directory
.cache/ # Cache directory
# --- Secrets / Credentials ---
*.pem # Private keys
*.key # Key files
*.crt # Certificate files
*.env # Environment variable files
.env.* # Additional environment files
secrets/ # Secrets directory
config/ # Config directory
.kubeconfig # Kubernetes config
*.keystore # Java Keystore files
*.pfx # PKCS #12 files
*.p12 # PKCS #12 files
# --- MacOS Specific ---
.DS_Store # MacOS system file
# --- Windows Specific ---
Thumbs.db # Windows system file
ehthumbs.db # Windows system file
Desktop.ini # Windows system file
/.idea/.gitignore
/.idea/compiler.xml
/.idea/encodings.xml
/.idea/git_toolbox_blame.xml
/.idea/git_toolbox_prj.xml
/.idea/jarRepositories.xml
/.idea/misc.xml
/.idea/modules.xml
/.idea/SkyTrader24.iml
/.idea/vcs.xml
target/