Spaces:
Runtime error
Runtime error
Commit ·
c2dfda4
1
Parent(s): 38d779d
Add security entries to .gitignore
Browse files- Added rules to ignore certificate and key files (*.pem, *.key, *.crt, *.cert, *.p12, *.pfx) to enhance security and prevent accidental commits of sensitive information.
- .gitignore +8 -0
.gitignore
CHANGED
|
@@ -41,3 +41,11 @@ llm_comparison_*.csv
|
|
| 41 |
llm_config_*.json
|
| 42 |
*.log
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
llm_config_*.json
|
| 42 |
*.log
|
| 43 |
|
| 44 |
+
# Security - Never commit certificates or keys
|
| 45 |
+
*.pem
|
| 46 |
+
*.key
|
| 47 |
+
*.crt
|
| 48 |
+
*.cert
|
| 49 |
+
*.p12
|
| 50 |
+
*.pfx
|
| 51 |
+
|