Queer European MD passionate about IT

.gitignore 940 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # local_* files
  2. local_*
  3. # databases
  4. *.db
  5. *.json
  6. *.txt
  7. !requirements.txt
  8. # Bash files (to run the code) and nohup output file (nohup lets a script run after terminal closes)
  9. *.sh
  10. *nohup.out
  11. # ---> Python
  12. # Byte-compiled / optimized / DLL files
  13. __pycache__/
  14. *.py[cod]
  15. *$py.class
  16. .ipynb_checkpoints/
  17. # C extensions
  18. *.so
  19. # Distribution / packaging
  20. .Python
  21. env/
  22. build/
  23. develop-eggs/
  24. dist/
  25. downloads/
  26. eggs/
  27. .eggs/
  28. lib/
  29. lib64/
  30. parts/
  31. sdist/
  32. var/
  33. *.egg-info/
  34. .installed.cfg
  35. *.egg
  36. # PyInstaller
  37. # Usually these files are written by a python script from a template
  38. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  39. *.manifest
  40. *.spec
  41. # Installer logs
  42. pip-log.txt
  43. pip-delete-this-directory.txt
  44. # Unit test / coverage reports
  45. htmlcov/
  46. .tox/
  47. .coverage
  48. .coverage.*
  49. .cache
  50. nosetests.xml
  51. coverage.xml
  52. *,cover
  53. # Translations
  54. *.mo
  55. *.pot
  56. # Django stuff:
  57. *.log
  58. # Sphinx documentation
  59. docs/_build/
  60. # PyBuilder
  61. target/