Skip to content

Commit ba085a8

Browse files
committed
Create .gitignore
1 parent 654866a commit ba085a8

File tree

1 file changed

+88
-0
lines changed

1 file changed

+88
-0
lines changed

.gitignore

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Virtual environments
24+
.env
25+
.venv
26+
env/
27+
venv/
28+
ENV/
29+
env.bak/
30+
venv.bak/
31+
32+
# IDE
33+
.vscode/
34+
.idea/
35+
*.swp
36+
*.swo
37+
*~
38+
39+
# OS
40+
.DS_Store
41+
.DS_Store?
42+
._*
43+
.Spotlight-V100
44+
.Trashes
45+
ehthumbs.db
46+
Thumbs.db
47+
48+
# Logs
49+
*.log
50+
logs/
51+
52+
# Terraform
53+
*.tfstate
54+
*.tfstate.*
55+
.terraform/
56+
.terraform.lock.hcl
57+
terraform.tfvars
58+
59+
# AWS
60+
.aws/
61+
62+
# Jupyter
63+
.ipynb_checkpoints/
64+
65+
# Docker
66+
.dockerignore
67+
68+
# Streamlit
69+
.streamlit/
70+
71+
# Environment variables
72+
.env.local
73+
.env.production
74+
.env.staging
75+
76+
# Dependencies
77+
node_modules/
78+
uv.lock
79+
80+
# Temporary files
81+
*.tmp
82+
*.temp
83+
84+
# Checkpoints
85+
checkpoints.db
86+
*.db
87+
*.db-shm
88+
*.db-wal

0 commit comments

Comments
 (0)