rorshi commited on
Commit
18b93f5
·
unverified ·
1 Parent(s): 03cad1d

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +263 -0
.gitignore CHANGED
@@ -172,3 +172,266 @@ cython_debug/
172
 
173
  # PyPI configuration file
174
  .pypirc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
 
173
  # PyPI configuration file
174
  .pypirc
175
+
176
+ # Created by https://www.toptal.com/developers/gitignore/api/python,flask
177
+ # Edit at https://www.toptal.com/developers/gitignore?templates=python,flask
178
+
179
+ ### Flask ###
180
+ instance/*
181
+ !instance/.gitignore
182
+ .webassets-cache
183
+ .env
184
+
185
+ ### Flask.Python Stack ###
186
+ # Byte-compiled / optimized / DLL files
187
+ __pycache__/
188
+ *.py[cod]
189
+ *$py.class
190
+
191
+ # C extensions
192
+ *.so
193
+
194
+ # Distribution / packaging
195
+ .Python
196
+ build/
197
+ develop-eggs/
198
+ dist/
199
+ downloads/
200
+ eggs/
201
+ .eggs/
202
+ lib/
203
+ lib64/
204
+ parts/
205
+ sdist/
206
+ var/
207
+ wheels/
208
+ share/python-wheels/
209
+ *.egg-info/
210
+ .installed.cfg
211
+ *.egg
212
+ MANIFEST
213
+
214
+ # PyInstaller
215
+ # Usually these files are written by a python script from a template
216
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
217
+ *.manifest
218
+ *.spec
219
+
220
+ # Installer logs
221
+ pip-log.txt
222
+ pip-delete-this-directory.txt
223
+
224
+ # Unit test / coverage reports
225
+ htmlcov/
226
+ .tox/
227
+ .nox/
228
+ .coverage
229
+ .coverage.*
230
+ .cache
231
+ nosetests.xml
232
+ coverage.xml
233
+ *.cover
234
+ *.py,cover
235
+ .hypothesis/
236
+ .pytest_cache/
237
+ cover/
238
+
239
+ # Translations
240
+ *.mo
241
+ *.pot
242
+
243
+ # Django stuff:
244
+ *.log
245
+ local_settings.py
246
+ db.sqlite3
247
+ db.sqlite3-journal
248
+
249
+ # Flask stuff:
250
+ instance/
251
+
252
+ # Scrapy stuff:
253
+ .scrapy
254
+
255
+ # Sphinx documentation
256
+ docs/_build/
257
+
258
+ # PyBuilder
259
+ .pybuilder/
260
+ target/
261
+
262
+ # Jupyter Notebook
263
+ .ipynb_checkpoints
264
+
265
+ # IPython
266
+ profile_default/
267
+ ipython_config.py
268
+
269
+ # pyenv
270
+ # For a library or package, you might want to ignore these files since the code is
271
+ # intended to run in multiple environments; otherwise, check them in:
272
+ # .python-version
273
+
274
+ # pipenv
275
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
276
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
277
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
278
+ # install all needed dependencies.
279
+ #Pipfile.lock
280
+
281
+ # poetry
282
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
283
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
284
+ # commonly ignored for libraries.
285
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
286
+ #poetry.lock
287
+
288
+ # pdm
289
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
290
+ #pdm.lock
291
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
292
+ # in version control.
293
+ # https://pdm.fming.dev/#use-with-ide
294
+ .pdm.toml
295
+
296
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
297
+ __pypackages__/
298
+
299
+ # Celery stuff
300
+ celerybeat-schedule
301
+ celerybeat.pid
302
+
303
+ # SageMath parsed files
304
+ *.sage.py
305
+
306
+ # Environments
307
+ .venv
308
+ env/
309
+ venv/
310
+ ENV/
311
+ env.bak/
312
+ venv.bak/
313
+
314
+ # Spyder project settings
315
+ .spyderproject
316
+ .spyproject
317
+
318
+ # Rope project settings
319
+ .ropeproject
320
+
321
+ # mkdocs documentation
322
+ /site
323
+
324
+ # mypy
325
+ .mypy_cache/
326
+ .dmypy.json
327
+ dmypy.json
328
+
329
+ # Pyre type checker
330
+ .pyre/
331
+
332
+ # pytype static type analyzer
333
+ .pytype/
334
+
335
+ # Cython debug symbols
336
+ cython_debug/
337
+
338
+ # PyCharm
339
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
340
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
341
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
342
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
343
+ #.idea/
344
+
345
+ ### Python ###
346
+ # Byte-compiled / optimized / DLL files
347
+
348
+ # C extensions
349
+
350
+ # Distribution / packaging
351
+
352
+ # PyInstaller
353
+ # Usually these files are written by a python script from a template
354
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
355
+
356
+ # Installer logs
357
+
358
+ # Unit test / coverage reports
359
+
360
+ # Translations
361
+
362
+ # Django stuff:
363
+
364
+ # Flask stuff:
365
+
366
+ # Scrapy stuff:
367
+
368
+ # Sphinx documentation
369
+
370
+ # PyBuilder
371
+
372
+ # Jupyter Notebook
373
+
374
+ # IPython
375
+
376
+ # pyenv
377
+ # For a library or package, you might want to ignore these files since the code is
378
+ # intended to run in multiple environments; otherwise, check them in:
379
+ # .python-version
380
+
381
+ # pipenv
382
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
383
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
384
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
385
+ # install all needed dependencies.
386
+
387
+ # poetry
388
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
389
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
390
+ # commonly ignored for libraries.
391
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
392
+
393
+ # pdm
394
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
395
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
396
+ # in version control.
397
+ # https://pdm.fming.dev/#use-with-ide
398
+
399
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
400
+
401
+ # Celery stuff
402
+
403
+ # SageMath parsed files
404
+
405
+ # Environments
406
+
407
+ # Spyder project settings
408
+
409
+ # Rope project settings
410
+
411
+ # mkdocs documentation
412
+
413
+ # mypy
414
+
415
+ # Pyre type checker
416
+
417
+ # pytype static type analyzer
418
+
419
+ # Cython debug symbols
420
+
421
+ # PyCharm
422
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
423
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
424
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
425
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
426
+
427
+ ### Python Patch ###
428
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
429
+ poetry.toml
430
+
431
+ # ruff
432
+ .ruff_cache/
433
+
434
+ # LSP config files
435
+ pyrightconfig.json
436
+
437
+ # End of https://www.toptal.com/developers/gitignore/api/python,flask