Queer European MD passionate about IT

.gitignore 1006 B

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