Skip to content

Commit 4dd4ca0

Browse files
Enhance .gitignore to include additional patterns for Python, Django, Flask, and other development artifacts. This update improves project cleanliness by ignoring unnecessary files and directories generated during development and testing.
1 parent 6cb67ba commit 4dd4ca0

File tree

1 file changed

+97
-1
lines changed

1 file changed

+97
-1
lines changed

.gitignore

Lines changed: 97 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,100 @@ synthetic_data/
1515
gen3schemadev/__pycache__/
1616
logs
1717
output/
18-
env
18+
env
19+
# Byte-compiled / optimized / DLL files
20+
__pycache__/
21+
*.py[cod]
22+
*$py.class
23+
24+
# C extensions
25+
*.so
26+
27+
# Distribution / packaging
28+
.Python
29+
develop-eggs/
30+
eggs/
31+
.eggs/
32+
lib/
33+
lib64/
34+
parts/
35+
sdist/
36+
var/
37+
*.egg
38+
*.egg-info/
39+
.installed.cfg
40+
41+
# PyInstaller
42+
# Usually these files are written by a python script from a template
43+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
44+
*.manifest
45+
*.spec
46+
47+
# Installer logs
48+
pip-log.txt
49+
pip-delete-this-directory.txt
50+
51+
# Unit test / coverage reports
52+
htmlcov/
53+
.tox/
54+
.nox/
55+
.coverage
56+
.coverage.*
57+
.cache
58+
nosetests.xml
59+
coverage.xml
60+
*.cover
61+
.hypothesis/
62+
.pytest_cache/
63+
64+
# Translations
65+
*.mo
66+
*.pot
67+
68+
# Django stuff:
69+
*.log
70+
local_settings.py
71+
db.sqlite3
72+
73+
# Flask stuff:
74+
instance/
75+
.webassets-cache
76+
77+
# Scrapy stuff:
78+
.scrapy
79+
80+
# Sphinx documentation
81+
docs/_build/
82+
83+
# PyBuilder
84+
target/
85+
86+
# Jupyter Notebook
87+
.ipynb_checkpoints
88+
89+
# IPython
90+
profile_default/
91+
ipython_config.py
92+
93+
# pyenv
94+
.python-version
95+
96+
# pipenv
97+
Pipfile.lock
98+
99+
# poetry
100+
poetry.lock
101+
102+
# mypy
103+
.mypy_cache/
104+
.dmypy.json
105+
dmypy.json
106+
107+
# Pyre type checker
108+
.pyre/
109+
110+
# pytype
111+
.pytype/
112+
113+
# Cython debug symbols
114+
cython_debug/

0 commit comments

Comments
 (0)