Solutions for MEIM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. ### OSX ###
  2. .DS_Store
  3. .AppleDouble
  4. .LSOverride
  5. # Icon must end with two \r
  6. Icon
  7. # Thumbnails
  8. ._*
  9. # Files that might appear on external disk
  10. .Spotlight-V100
  11. .Trashes
  12. # Directories potentially created on remote AFP share
  13. .AppleDB
  14. .AppleDesktop
  15. Network Trash Folder
  16. Temporary Items
  17. .apdisk
  18. ### Python ###
  19. # Byte-compiled / optimized / DLL files
  20. __pycache__/
  21. *.py[cod]
  22. # C extensions
  23. *.so
  24. # Distribution / packaging
  25. .Python
  26. env/
  27. build/
  28. develop-eggs/
  29. dist/
  30. downloads/
  31. eggs/
  32. lib/
  33. lib64/
  34. parts/
  35. sdist/
  36. var/
  37. *.egg-info/
  38. .installed.cfg
  39. *.egg
  40. # PyInstaller
  41. # Usually these files are written by a python script from a template
  42. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  43. *.manifest
  44. *.spec
  45. # Installer logs
  46. pip-log.txt
  47. pip-delete-this-directory.txt
  48. # Unit test / coverage reports
  49. htmlcov/
  50. .tox/
  51. .coverage
  52. .cache
  53. nosetests.xml
  54. coverage.xml
  55. # Translations
  56. *.mo
  57. *.pot
  58. # Sphinx documentation
  59. docs/_build/
  60. # PyBuilder
  61. target/
  62. ### Django ###
  63. *.log
  64. *.pot
  65. *.pyc
  66. **__pycache__/
  67. local_settings.py
  68. db.sqlite3
  69. .env
  70. **/db.sqlite3
  71. # PyCharm
  72. **/.idea/