Queer European MD passionate about IT

.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # local_* files
  2. local_*
  3. # databases
  4. *.db
  5. *.json
  6. # Data
  7. davtebot/data/*
  8. !davtebot/data/__init__.py
  9. !davtebot/data/davtebot_helper.json
  10. # OLD directory (backup files)
  11. Old/
  12. MiniScript utili/
  13. *.txt
  14. !requirements.txt
  15. # Bash files (to run the code) and nohup output file (nohup lets a script run after terminal closes)
  16. *.sh
  17. !RunMe.sh
  18. !RunOnEuler.sh
  19. !*push.sh
  20. !nautilus_VPN.sh
  21. *nohup.out
  22. #Pictures
  23. davtebot/img/*
  24. !davtebot/img/balance.png
  25. !davtebot/img/gear.png
  26. !davtebot/img/money.png
  27. !davtebot/img/ProfilePic.png
  28. !davtebot/img/ProfilePic.xcf
  29. !davtebot/img/robot.png
  30. !davtebot/img/search.png
  31. !davtebot/img/key.png
  32. !davtebot/img/malus.png
  33. # ---> Python
  34. # Byte-compiled / optimized / DLL files
  35. __pycache__/
  36. *.py[cod]
  37. *$py.class
  38. .ipynb_checkpoints/
  39. # C extensions
  40. *.so
  41. # Distribution / packaging
  42. .Python
  43. env/
  44. build/
  45. develop-eggs/
  46. dist/
  47. downloads/
  48. eggs/
  49. .eggs/
  50. lib/
  51. lib64/
  52. parts/
  53. sdist/
  54. var/
  55. *.egg-info/
  56. .installed.cfg
  57. *.egg
  58. # PyInstaller
  59. # Usually these files are written by a python script from a template
  60. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  61. *.manifest
  62. *.spec
  63. # Installer logs
  64. pip-log.txt
  65. pip-delete-this-directory.txt
  66. # Unit test / coverage reports
  67. htmlcov/
  68. .tox/
  69. .coverage
  70. .coverage.*
  71. .cache
  72. nosetests.xml
  73. coverage.xml
  74. *,cover
  75. # Translations
  76. *.mo
  77. *.pot
  78. # Django stuff:
  79. *.log
  80. # Sphinx documentation
  81. docs/_build/
  82. # PyBuilder
  83. target/