File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments