-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (48 loc) · 1.16 KB
/
.gitignore
File metadata and controls
57 lines (48 loc) · 1.16 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
# Python Virtual Environment
# Ignore the virtual environment directory to avoid committing packages.
.venv/
venv/
env/
ENV/
# Python Cache Files
# Ignore compiled Python files and cache directories.
__pycache__/
*.pyc
*.pyo
*.pyd
# Sensitive Information & Secrets
# CRITICAL: Never commit your .env file containing API keys and passwords.
.env
*.env
# CRITICAL: Never commit Kubernetes configuration files.
kubeconfig
*.kubeconfig
# IDE and Editor Directories
# Ignore configuration directories from common IDEs.
.vscode/
.idea/
.project
.pydevproject
# Build and Distribution Artifacts
# Ignore build artifacts from tools like setuptools.
/build/
/dist/
*.egg-info/
*.egg
# ADK Session Files
# Ignore session files saved by 'adk run --save_session'.
*.session.json
*.db
# Docker & Compose Files
# It's often good practice to ignore local compose files if they contain sensitive info,
# or if they are just for local development and not part of the main deployment.
docker-compose.yml
docker-compose.override.yml
# Log Files
# Ignore any local log files that might be generated during testing.
*.log
logs/
# Operating System Files
# Ignore OS-specific files.
.DS_Store
Thumbs.db