Queer European MD passionate about IT

.gitignore 931 B

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