.gitignore 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. # Custom
  2. .pytest_cache
  3. config.toml
  4. media/user_uploads/*
  5. resources/templates/*
  6. media/uk/passport/completed_files/*
  7. media/uk/bill/completed_files/*
  8. TODO.md
  9. # Created by https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,vim,linux,macos,windows,emacs,pycharm+all,redis
  10. # Edit at https://www.toptal.com/developers/gitignore?templates=python,visualstudiocode,vim,linux,macos,windows,emacs,pycharm+all,redis
  11. ### Emacs ###
  12. # -*- mode: gitignore; -*-
  13. *~
  14. \#*\#
  15. /.emacs.desktop
  16. /.emacs.desktop.lock
  17. *.elc
  18. auto-save-list
  19. tramp
  20. .\#*
  21. # Org-mode
  22. .org-id-locations
  23. *_archive
  24. # flymake-mode
  25. *_flymake.*
  26. # eshell files
  27. /eshell/history
  28. /eshell/lastdir
  29. # elpa packages
  30. /elpa/
  31. # reftex files
  32. *.rel
  33. # AUCTeX auto folder
  34. /auto/
  35. # cask packages
  36. .cask/
  37. # Flycheck
  38. flycheck_*.el
  39. # server auth directory
  40. /server/
  41. # projectiles files
  42. .projectile
  43. # directory configuration
  44. .dir-locals.el
  45. # network security
  46. /network-security.data
  47. ### Linux ###
  48. # temporary files which can be created if a process still has a handle open of a deleted file
  49. .fuse_hidden*
  50. # KDE directory preferences
  51. .directory
  52. # Linux trash folder which might appear on any partition or disk
  53. .Trash-*
  54. # .nfs files are created when an open file is removed but is still being accessed
  55. .nfs*
  56. ### macOS ###
  57. # General
  58. .DS_Store
  59. .AppleDouble
  60. .LSOverride
  61. # Icon must end with two \r
  62. Icon
  63. # Thumbnails
  64. ._*
  65. # Files that might appear in the root of a volume
  66. .DocumentRevisions-V100
  67. .fseventsd
  68. .Spotlight-V100
  69. .TemporaryItems
  70. .Trashes
  71. .VolumeIcon.icns
  72. .com.apple.timemachine.donotpresent
  73. # Directories potentially created on remote AFP share
  74. .AppleDB
  75. .AppleDesktop
  76. Network Trash Folder
  77. Temporary Items
  78. .apdisk
  79. ### PyCharm+all ###
  80. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  81. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  82. # User-specific stuff
  83. .idea/**/workspace.xml
  84. .idea/**/tasks.xml
  85. .idea/**/usage.statistics.xml
  86. .idea/**/dictionaries
  87. .idea/**/shelf
  88. # AWS User-specific
  89. .idea/**/aws.xml
  90. # Generated files
  91. .idea/**/contentModel.xml
  92. # Sensitive or high-churn files
  93. .idea/**/dataSources/
  94. .idea/**/dataSources.ids
  95. .idea/**/dataSources.local.xml
  96. .idea/**/sqlDataSources.xml
  97. .idea/**/dynamic.xml
  98. .idea/**/uiDesigner.xml
  99. .idea/**/dbnavigator.xml
  100. # Gradle
  101. .idea/**/gradle.xml
  102. .idea/**/libraries
  103. # Gradle and Maven with auto-import
  104. # When using Gradle or Maven with auto-import, you should exclude module files,
  105. # since they will be recreated, and may cause churn. Uncomment if using
  106. # auto-import.
  107. # .idea/artifacts
  108. # .idea/compiler.xml
  109. # .idea/jarRepositories.xml
  110. # .idea/modules.xml
  111. # .idea/*.iml
  112. # .idea/modules
  113. # *.iml
  114. # *.ipr
  115. # CMake
  116. cmake-build-*/
  117. # Mongo Explorer plugin
  118. .idea/**/mongoSettings.xml
  119. # File-based project format
  120. *.iws
  121. # IntelliJ
  122. out/
  123. # mpeltonen/sbt-idea plugin
  124. .idea_modules/
  125. # JIRA plugin
  126. atlassian-ide-plugin.xml
  127. # Cursive Clojure plugin
  128. .idea/replstate.xml
  129. # Crashlytics plugin (for Android Studio and IntelliJ)
  130. com_crashlytics_export_strings.xml
  131. crashlytics.properties
  132. crashlytics-build.properties
  133. fabric.properties
  134. # Editor-based Rest Client
  135. .idea/httpRequests
  136. # Android studio 3.1+ serialized cache file
  137. .idea/caches/build_file_checksums.ser
  138. ### PyCharm+all Patch ###
  139. # Ignores the whole .idea folder and all .iml files
  140. # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
  141. .idea/
  142. # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
  143. *.iml
  144. modules.xml
  145. .idea/misc.xml
  146. *.ipr
  147. # Sonarlint plugin
  148. .idea/sonarlint
  149. ### Python ###
  150. # Byte-compiled / optimized / DLL files
  151. __pycache__/
  152. *.py[cod]
  153. *$py.class
  154. # C extensions
  155. *.so
  156. # Distribution / packaging
  157. .Python
  158. build/
  159. develop-eggs/
  160. downloads/
  161. eggs/
  162. .eggs/
  163. lib/
  164. lib64/
  165. parts/
  166. sdist/
  167. var/
  168. wheels/
  169. share/python-wheels/
  170. *.egg-info/
  171. .installed.cfg
  172. *.egg
  173. MANIFEST
  174. # PyInstaller
  175. # Usually these files are written by a python script from a template
  176. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  177. *.manifest
  178. *.spec
  179. # Installer logs
  180. pip-log.txt
  181. pip-delete-this-directory.txt
  182. # Unit test / coverage reports
  183. htmlcov/
  184. .tox/
  185. .nox/
  186. .coverage
  187. .coverage.*
  188. .cache
  189. nosetests.xml
  190. coverage.xml
  191. *.cover
  192. *.py,cover
  193. .hypothesis/
  194. .pytest_cache/
  195. cover/
  196. # Translations
  197. *.mo
  198. *.pot
  199. # Django stuff:
  200. *.log
  201. local_settings.py
  202. db.sqlite3
  203. db.sqlite3-journal
  204. # Flask stuff:
  205. instance/
  206. .webassets-cache
  207. # Scrapy stuff:
  208. .scrapy
  209. # Sphinx documentation
  210. docs/_build/
  211. # PyBuilder
  212. .pybuilder/
  213. target/
  214. # Jupyter Notebook
  215. .ipynb_checkpoints
  216. # IPython
  217. profile_default/
  218. ipython_config.py
  219. # pyenv
  220. # For a library or package, you might want to ignore these files since the code is
  221. # intended to run in multiple environments; otherwise, check them in:
  222. # .python-version
  223. # pipenv
  224. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  225. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  226. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  227. # install all needed dependencies.
  228. #Pipfile.lock
  229. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  230. __pypackages__/
  231. # Celery stuff
  232. celerybeat-schedule
  233. celerybeat.pid
  234. # SageMath parsed files
  235. *.sage.py
  236. # Environments
  237. .env
  238. .venv
  239. env/
  240. venv/
  241. ENV/
  242. env.bak/
  243. venv.bak/
  244. # Spyder project settings
  245. .spyderproject
  246. .spyproject
  247. # Rope project settings
  248. .ropeproject
  249. # mkdocs documentation
  250. /site
  251. # mypy
  252. .mypy_cache/
  253. .dmypy.json
  254. dmypy.json
  255. # Pyre type checker
  256. .pyre/
  257. # pytype static type analyzer
  258. .pytype/
  259. # Cython debug symbols
  260. cython_debug/
  261. ### Redis ###
  262. # Ignore redis binary dump (dump.rdb) files
  263. *.rdb
  264. ### Vim ###
  265. # Swap
  266. [._]*.s[a-v][a-z]
  267. !*.svg # comment out if you don't need vector files
  268. [._]*.sw[a-p]
  269. [._]s[a-rt-v][a-z]
  270. [._]ss[a-gi-z]
  271. [._]sw[a-p]
  272. # Session
  273. Session.vim
  274. Sessionx.vim
  275. # Temporary
  276. .netrwhist
  277. # Auto-generated tag files
  278. tags
  279. # Persistent undo
  280. [._]*.un~
  281. ### VisualStudioCode ###
  282. .vscode/*
  283. !.vscode/settings.json
  284. !.vscode/tasks.json
  285. !.vscode/launch.json
  286. !.vscode/extensions.json
  287. *.code-workspace
  288. # Local History for Visual Studio Code
  289. .history/
  290. ### VisualStudioCode Patch ###
  291. # Ignore all local history of files
  292. .history
  293. .ionide
  294. ### Windows ###
  295. # Windows thumbnail cache files
  296. Thumbs.db
  297. Thumbs.db:encryptable
  298. ehthumbs.db
  299. ehthumbs_vista.db
  300. # Dump file
  301. *.stackdump
  302. # Folder config file
  303. [Dd]esktop.ini
  304. # Recycle Bin used on file shares
  305. $RECYCLE.BIN/
  306. # Windows Installer files
  307. *.cab
  308. *.msi
  309. *.msix
  310. *.msm
  311. *.msp
  312. # Windows shortcuts
  313. *.lnk
  314. # End of https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,vim,linux,macos,windows,emacs,pycharm+all,redis