-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (49 loc) · 968 Bytes
/
Copy path.gitignore
File metadata and controls
57 lines (49 loc) · 968 Bytes
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 General ---
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.eggs/
dist/
build/
develop-eggs/
.pytest_cache/
# --- Virtual Environments (uv / pip) ---
.venv/
venv/
env/
# --- Environment Variables & Secrets ---
# CRITICAL: Never commit keys/passwords
.env
.env.local
.env.*
# --- Dagster ---
# Local storage for runs and logs
.dagster/
dagster_home/
history/
storage/
*.db
*.sqlite
# --- Data & Models ---
# Ignore the actual data files we download/generate
data/*
# ...but keep the folder itself (if you add a .gitkeep file)
!data/.gitkeep
# Ignore large ML model weights if we download them locally
*.pt
*.pth
*.ckpt
models/
# --- Pulumi (Infrastructure as Code) ---
# Ignore local state/backup files
.pulumi/
# Ignore stack configuration files if they contain unencrypted secrets
# (Usually Pulumi.yaml is committed, but be careful with dev/prod configs)
# Pulumi.*.yaml
# --- OS & IDEs ---
.DS_Store
.vscode/
.idea/
.ipynb_checkpoints/
issues/*