-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.gitignore
More file actions
91 lines (84 loc) · 1.04 KB
/
.gitignore
File metadata and controls
91 lines (84 loc) · 1.04 KB
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
# Secrets and credentials - never commit these
.env
.env*
!.env.example
*.key
*.pem
*.pfx
*.p12
*.crt
*.cer
*.der
*.jks
*.keystore
*.pub
*.token
*.secret
secrets.*
credentials.*
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.mypy_cache/
.ruff_cache/
.pytest_cache/
.hypothesis/
.coverage
.coverage.*
coverage.xml
htmlcov/
dist/
build/
*.egg-info/
# Virtual environments
.venv/
.venv-*/
venv/
env/
# Azure developer tools
.azure/
.azd/
azd-*.json
azure-dev*.json
*.log
# Agent Framework and Foundry local state
.checkpoints/
.agents/
.foundry/
agent_status*.json
agent_status*.txt
agent_versions*.json
agent_versions*.txt
agent.json
agentinfo.json
deployment_log*.json
deployment_log*.txt
container_logs*.log
container_logs*.txt
verify_result*.json
verify_result*.txt
# Temporary debug/output files
*.txt
!requirements.txt
test_body.json
test_response.json
response*.json
responses*.json
local_*.json
tmp/
temp/
.tmp/
# IDE and OS
.vscode/settings.json
.vscode/*.code-workspace
.idea/
*.DS_Store
Thumbs.db
desktop.ini
# Docker build artifacts
*.tar
*.tar.gz
*.tgz
*.zip