説明なし

.gitignore 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Django specific
  8. *.log
  9. local_settings.py
  10. db.sqlite3
  11. db.sqlite3-journal
  12. media/
  13. # If you are using the default SQLite database:
  14. *.sqlite3
  15. # Environment variables
  16. .env
  17. *.env
  18. # Virtual environment
  19. venv/
  20. env/
  21. ENV/
  22. *.virtualenv
  23. # Python egg files
  24. *.egg
  25. *.egg-info/
  26. dist/
  27. build/
  28. *.wheel
  29. # Coverage reports
  30. htmlcov/
  31. .coverage
  32. .coverage.*
  33. # Testing
  34. .pytest_cache/
  35. .tox/
  36. .nox/
  37. *.cover
  38. *.hypothesis/
  39. *.pytest_cache/
  40. .cache/
  41. # Jupyter Notebook
  42. .ipynb_checkpoints
  43. # IDEs and editors
  44. .vscode/
  45. .idea/
  46. *.swp
  47. *.swo
  48. *.swn
  49. *~
  50. # macOS specific files
  51. .DS_Store
  52. # Docker
  53. *.log
  54. docker-compose.override.yml
  55. *.pid
  56. *.crt
  57. *.key
  58. mssql.*
  59. # Generated static files
  60. staticfiles/
  61. node_modules/
  62. # Yarn and npm
  63. yarn.lock
  64. package-lock.json
  65. # Pipenv
  66. Pipfile
  67. Pipfile.lock
  68. # Gunicorn
  69. gunicorn.log
  70. gunicorn.err
  71. # MyPy
  72. .mypy_cache/
  73. dmypy.json
  74. dmypy.json.*/
  75. # Pyre
  76. .pyre/
  77. # Celery beat schedule file
  78. celerybeat-schedule
  79. # Sphinx documentation
  80. docs/_build/
  81. # Temporary files and backups
  82. *.bak
  83. *.tmp
  84. *.temp
  85. *.old
  86. *.orig
  87. *.swp
  88. *.swo
  89. *.sw~
  90. # Security sensitive files
  91. secrets.json
  92. db-init/ob2011.sql
  93. .python-version
  94. .node-version