-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
68 lines (55 loc) · 858 Bytes
/
.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
# Byte-compiled files and logs
__pycache__/
*.py[cod]
*.pyo
*.log
*.sqlite3
*.db
# Airflow-specific files
airflow.cfg
unittests.cfg
webserver_config.py
*.pid
# Environment and dependencies
.env
*.env
.venv/
.envrc
*.egg-info/
pip-log.txt
pip-delete-this-directory.txt
# Secrets and credentials
secrets.json
secrets.yaml
dags/secrets/
# Airflow database migrations
migrations/
# Python virtual environments
venv/
ENV/
env/
# DAG files with sensitive data
dags/*.key
dags/*.pem
# Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Airflow logs and temporary data
logs/
tmp/
logs/scheduler.log
logs/webserver.log
# OS-specific files
.DS_Store
Thumbs.db
# Build and package files
build/
dist/
*.egg
*.wheel
# Kubernetes/Airflow Helm files (if applicable)
k8s/*.yaml
helm-charts/
# VSCode-specific files
.vscode/
# IntelliJ IDEA specific files
.idea/