File tree Expand file tree Collapse file tree 1 file changed +76
-0
lines changed
Expand file tree Collapse file tree 1 file changed +76
-0
lines changed Original file line number Diff line number Diff line change 1+ # Environment variables
2+ .env
3+ .env. *
4+
5+ # Python
6+ __pycache__ /
7+ * .py [cod ]
8+ * $py.class
9+ * .so
10+ .Python
11+ .pytest_cache /
12+ .coverage
13+ .coverage. *
14+ coverage.xml
15+ * .cover
16+ * .log
17+ .mypy_cache /
18+ .dmypy.json
19+ dmypy.json
20+ .ruff_cache /
21+
22+ # Virtual environments
23+ .venv /
24+ venv /
25+ ENV /
26+ env /
27+
28+ # UV cache
29+ .uv /
30+
31+ # IDE
32+ .vscode /
33+ .idea /
34+ * .swp
35+ * .swo
36+ * ~
37+ .DS_Store
38+
39+ # Git
40+ .git /
41+ .gitignore
42+ .gitattributes
43+
44+ # CI/CD
45+ .github /
46+ .gitlab-ci.yml
47+
48+ # Documentation (optional - remove if needed in container)
49+ README.md
50+ dev_tools /
51+
52+ # Testing
53+ tests /
54+ pytest.ini
55+ tox.ini
56+ .tox /
57+
58+ # Build artifacts
59+ build /
60+ dist /
61+ * .egg-info /
62+ .eggs /
63+
64+ # Docker
65+ Dockerfile
66+ .dockerignore
67+ docker-compose * .yml
68+
69+ # Scripts (optional - remove if needed in container)
70+ scripts /
71+
72+ # Temporary files
73+ tmp /
74+ temp /
75+ * .tmp
76+ * .bak
You can’t perform that action at this time.
0 commit comments