.gitignore 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. public/data/*
  2. !public/data/.gitkeep
  3. node_modules/
  4. # Logs
  5. logs
  6. *.log
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. pnpm-debug.log*
  11. lerna-debug.log*
  12. node_modules
  13. dist
  14. dist-ssr
  15. *.local
  16. # Editor directories and files
  17. .vscode/*
  18. !.vscode/extensions.json
  19. .idea
  20. .DS_Store
  21. *.suo
  22. *.ntvs*
  23. *.njsproj
  24. *.sln
  25. *.sw?
  26. ### Linux ###
  27. *~
  28. # temporary files which can be created if a process still has a handle open of a deleted file
  29. .fuse_hidden*
  30. # KDE directory preferences
  31. .directory
  32. # Linux trash folder which might appear on any partition or disk
  33. .Trash-*
  34. # .nfs files are created when an open file is removed but is still being accessed
  35. .nfs*
  36. ### macOS ###
  37. # General
  38. .DS_Store
  39. .AppleDouble
  40. .LSOverride
  41. # Icon must end with two \r
  42. Icon
  43. # Thumbnails
  44. ._*
  45. # Files that might appear in the root of a volume
  46. .DocumentRevisions-V100
  47. .fseventsd
  48. .Spotlight-V100
  49. .TemporaryItems
  50. .Trashes
  51. .VolumeIcon.icns
  52. .com.apple.timemachine.donotpresent
  53. # Directories potentially created on remote AFP share
  54. .AppleDB
  55. .AppleDesktop
  56. Network Trash Folder
  57. Temporary Items
  58. .apdisk
  59. ### macOS Patch ###
  60. # iCloud generated files
  61. *.icloud
  62. ### Python ###
  63. # Byte-compiled / optimized / DLL files
  64. __pycache__/
  65. *.py[cod]
  66. *$py.class
  67. # C extensions
  68. *.so
  69. # Distribution / packaging
  70. .Python
  71. build/
  72. develop-eggs/
  73. dist/
  74. downloads/
  75. eggs/
  76. .eggs/
  77. lib/
  78. lib64/
  79. parts/
  80. sdist/
  81. var/
  82. wheels/
  83. share/python-wheels/
  84. *.egg-info/
  85. .installed.cfg
  86. *.egg
  87. MANIFEST
  88. # PyInstaller
  89. # Usually these files are written by a python script from a template
  90. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  91. *.manifest
  92. *.spec
  93. # Installer logs
  94. pip-log.txt
  95. pip-delete-this-directory.txt
  96. # Unit test / coverage reports
  97. htmlcov/
  98. .tox/
  99. .nox/
  100. .coverage
  101. .coverage.*
  102. .cache
  103. nosetests.xml
  104. coverage.xml
  105. *.cover
  106. *.py,cover
  107. .hypothesis/
  108. .pytest_cache/
  109. cover/
  110. # Translations
  111. *.mo
  112. *.pot
  113. # Django stuff:
  114. *.log
  115. local_settings.py
  116. db.sqlite3
  117. db.sqlite3-journal
  118. # Flask stuff:
  119. instance/
  120. .webassets-cache
  121. # Scrapy stuff:
  122. .scrapy
  123. # Sphinx documentation
  124. docs/_build/
  125. # PyBuilder
  126. .pybuilder/
  127. target/
  128. # Jupyter Notebook
  129. .ipynb_checkpoints
  130. # IPython
  131. profile_default/
  132. ipython_config.py
  133. # pyenv
  134. # For a library or package, you might want to ignore these files since the code is
  135. # intended to run in multiple environments; otherwise, check them in:
  136. # .python-version
  137. # pipenv
  138. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  139. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  140. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  141. # install all needed dependencies.
  142. #Pipfile.lock
  143. # poetry
  144. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  145. # This is especially recommended for binary packages to ensure reproducibility, and is more
  146. # commonly ignored for libraries.
  147. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  148. #poetry.lock
  149. # pdm
  150. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  151. #pdm.lock
  152. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  153. # in version control.
  154. # https://pdm.fming.dev/#use-with-ide
  155. .pdm.toml
  156. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  157. __pypackages__/
  158. # Celery stuff
  159. celerybeat-schedule
  160. celerybeat.pid
  161. # SageMath parsed files
  162. *.sage.py
  163. # Environments
  164. .env
  165. .venv
  166. env/
  167. venv/
  168. ENV/
  169. env.bak/
  170. venv.bak/
  171. # Spyder project settings
  172. .spyderproject
  173. .spyproject
  174. # Rope project settings
  175. .ropeproject
  176. # mkdocs documentation
  177. /site
  178. # mypy
  179. .mypy_cache/
  180. .dmypy.json
  181. dmypy.json
  182. # Pyre type checker
  183. .pyre/
  184. # pytype static type analyzer
  185. .pytype/
  186. # Cython debug symbols
  187. cython_debug/
  188. # PyCharm
  189. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  190. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  191. # and can be added to the global gitignore or merged into this file. For a more nuclear
  192. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  193. #.idea/
  194. ### Python Patch ###
  195. # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
  196. poetry.toml
  197. ### Windows ###
  198. # Windows thumbnail cache files
  199. Thumbs.db
  200. Thumbs.db:encryptable
  201. ehthumbs.db
  202. ehthumbs_vista.db
  203. # Dump file
  204. *.stackdump
  205. # Folder config file
  206. [Dd]esktop.ini
  207. # Recycle Bin used on file shares
  208. $RECYCLE.BIN/
  209. # Windows Installer files
  210. *.cab
  211. *.msi
  212. *.msix
  213. *.msm
  214. *.msp
  215. # Windows shortcuts
  216. *.lnk