Skip to content

Commit 46bebad

Browse files
Create .gitignore
0 parents  commit 46bebad

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

.gitignore

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# =========================
2+
# Python
3+
# =========================
4+
__pycache__/
5+
*.py[cod]
6+
*.pyo
7+
*.pyd
8+
*.egg-info/
9+
dist/
10+
build/
11+
.eggs/
12+
.venv/
13+
venv/
14+
env/
15+
ENV/
16+
17+
# =========================
18+
# Environment & Secrets
19+
# =========================
20+
.env
21+
.env.*
22+
secrets/
23+
*.key
24+
*.pem
25+
26+
# =========================
27+
# Logs
28+
# =========================
29+
*.log
30+
logs/
31+
*.out
32+
33+
# =========================
34+
# Database
35+
# =========================
36+
*.db
37+
*.sqlite3
38+
db_data/
39+
postgres_data/
40+
mysql_data/
41+
42+
# =========================
43+
# Docker
44+
# =========================
45+
.docker/
46+
docker-volumes/
47+
docker-data/
48+
49+
# =========================
50+
# OS / Editor
51+
# =========================
52+
.DS_Store
53+
Thumbs.db
54+
*.swp
55+
*.swo
56+
.vscode/
57+
.idea/
58+
59+
# =========================
60+
# CI / Coverage
61+
# =========================
62+
.coverage
63+
htmlcov/
64+
.pytest_cache/
65+
66+
# =========================
67+
# Terraform (if/when you add it)
68+
# =========================
69+
.terraform/
70+
*.tfstate
71+
*.tfstate.*
72+
terraform.tfvars

0 commit comments

Comments
 (0)