1
-
2
- # Created by https://www.toptal.com/developers/gitignore/api/python,django
3
- # Edit at https://www.toptal.com/developers/gitignore?templates=python,django
4
-
5
- # ## Django ###
6
- * .log
7
- * .pot
8
- * .pyc
9
- __pycache__ /
10
- local_settings.py
11
- db.sqlite3
12
- db.sqlite3-journal
13
- media
14
-
15
- # If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
16
- # in your Git repository. Update and uncomment the following line accordingly.
17
- # <django-project-name>/staticfiles/
18
-
19
- # ## Django.Python Stack ###
20
- # Byte-compiled / optimized / DLL files
21
- * .py [cod ]
22
- * $py.class
23
-
24
- # C extensions
25
- * .so
26
-
27
- # Distribution / packaging
28
- .Python
29
- build /
30
- develop-eggs /
31
- dist /
32
- downloads /
33
- eggs /
34
- .eggs /
35
- parts /
36
- sdist /
37
- var /
38
- wheels /
39
- pip-wheel-metadata /
40
- share /python-wheels /
41
- * .egg-info /
42
- .installed.cfg
43
- * .egg
44
- MANIFEST
45
-
46
- # PyInstaller
47
- # Usually these files are written by a python script from a template
48
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
49
- * .manifest
50
- * .spec
51
-
52
- # Installer logs
53
- pip-log.txt
54
- pip-delete-this-directory.txt
55
-
56
- # Unit test / coverage reports
57
- htmlcov /
58
- .tox /
59
- .nox /
60
- .coverage
61
- .coverage. *
62
- .cache
63
- nosetests.xml
64
- coverage.xml
65
- * .cover
66
- * .py,cover
67
- .hypothesis /
68
- .pytest_cache /
69
- pytestdebug.log
70
-
71
- # Translations
72
- * .mo
73
-
74
- # Django stuff:
75
-
76
- # Flask stuff:
77
- instance /
78
- .webassets-cache
79
-
80
- # Scrapy stuff:
81
- .scrapy
82
-
83
- # Sphinx documentation
84
- docs /_build /
85
- doc /_build /
86
-
87
- # PyBuilder
88
- target /
89
-
90
- # Jupyter Notebook
91
- .ipynb_checkpoints
92
-
93
- # IPython
94
- profile_default /
95
- ipython_config.py
96
-
97
- # pyenv
98
- .python-version
99
-
100
- # pipenv
101
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
102
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
103
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
104
- # install all needed dependencies.
105
- # Pipfile.lock
106
-
107
- # poetry
108
- # poetry.lock
109
-
110
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow
111
- __pypackages__ /
112
-
113
- # Celery stuff
114
- celerybeat-schedule
115
- celerybeat.pid
116
-
117
- # SageMath parsed files
118
- * .sage.py
119
-
120
- # Environments
121
- # .env
122
- .env /
123
- .venv /
124
- env /
125
- venv /
126
- ENV /
127
- env.bak /
128
- venv.bak /
129
- pythonenv *
130
-
131
- # Spyder project settings
132
- .spyderproject
133
- .spyproject
134
-
135
- # Rope project settings
136
- .ropeproject
137
-
138
- # mkdocs documentation
139
- /site
140
-
141
- # mypy
142
- .mypy_cache /
143
- .dmypy.json
144
- dmypy.json
145
-
146
- # Pyre type checker
147
- .pyre /
148
-
149
- # pytype static type analyzer
150
- .pytype /
151
-
152
- # operating system-related files
153
- # file properties cache/storage on macOS
154
- * .DS_Store
155
- # thumbnail cache on Windows
156
- Thumbs.db
157
-
158
- # profiling data
159
- .prof
160
-
161
-
162
- # ## Python ###
163
- # Byte-compiled / optimized / DLL files
164
-
165
- # C extensions
166
-
167
- # Distribution / packaging
168
-
169
- # PyInstaller
170
- # Usually these files are written by a python script from a template
171
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
172
-
173
- # Installer logs
174
-
175
- # Unit test / coverage reports
176
-
177
- # Translations
178
-
179
- # Django stuff:
180
-
181
- # Flask stuff:
182
-
183
- # Scrapy stuff:
184
-
185
- # Sphinx documentation
186
-
187
- # PyBuilder
188
-
189
- # Jupyter Notebook
190
-
191
- # IPython
192
-
193
- # pyenv
194
-
195
- # pipenv
196
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
197
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
198
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
199
- # install all needed dependencies.
200
-
201
- # poetry
202
-
203
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow
204
-
205
- # Celery stuff
206
-
207
- # SageMath parsed files
208
-
209
- # Environments
210
- # .env
211
-
212
- # Spyder project settings
213
-
214
- # Rope project settings
215
-
216
- # mkdocs documentation
217
-
218
- # mypy
219
-
220
- # Pyre type checker
221
-
222
- # pytype static type analyzer
223
-
224
- # operating system-related files
225
- # file properties cache/storage on macOS
226
- # thumbnail cache on Windows
227
-
228
- # profiling data
229
-
230
-
231
- # End of https://www.toptal.com/developers/gitignore/api/python,django
232
-
233
- data /*
234
- .env
235
- .vscode /*
1
+ __pycache__
2
+ app.egg-info
0 commit comments