Queer European MD passionate about IT

.gitignore 958 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. # Test
  13. davtelepot/test.py
  14. # ---> Python
  15. # Byte-compiled / optimized / DLL files
  16. __pycache__/
  17. *.py[cod]
  18. *$py.class
  19. .ipynb_checkpoints/
  20. # C extensions
  21. *.so
  22. # Distribution / packaging
  23. .Python
  24. env/
  25. build/
  26. develop-eggs/
  27. dist/
  28. downloads/
  29. eggs/
  30. .eggs/
  31. lib/
  32. lib64/
  33. parts/
  34. sdist/
  35. var/
  36. *.egg-info/
  37. .installed.cfg
  38. *.egg
  39. # PyInstaller
  40. # Usually these files are written by a python script from a template
  41. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  42. *.manifest
  43. *.spec
  44. # Installer logs
  45. pip-log.txt
  46. pip-delete-this-directory.txt
  47. # Unit test / coverage reports
  48. htmlcov/
  49. .tox/
  50. .coverage
  51. .coverage.*
  52. .cache
  53. nosetests.xml
  54. coverage.xml
  55. *,cover
  56. # Translations
  57. *.mo
  58. *.pot
  59. # Django stuff:
  60. *.log
  61. # Sphinx documentation
  62. docs/_build/
  63. # PyBuilder
  64. target/