Queer European MD passionate about IT

.gitignore 1.0 KB

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