.gitignore 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. # Backups
  2. *.bak
  3. *.bak/
  4. # Images
  5. covers/*
  6. # Config files
  7. users.json
  8. config.json
  9. database.db
  10. database.db.bak
  11. # ---> Python
  12. # Byte-compiled / optimized / DLL files
  13. __pycache__/
  14. *.py[cod]
  15. *$py.class
  16. .venv/
  17. # C extensions
  18. *.so
  19. # Distribution / packaging
  20. .Python
  21. env/
  22. build/
  23. develop-eggs/
  24. dist/
  25. downloads/
  26. eggs/
  27. .eggs/
  28. lib/
  29. lib64/
  30. parts/
  31. sdist/
  32. var/
  33. *.egg-info/
  34. .installed.cfg
  35. *.egg
  36. # PyInstaller
  37. # Usually these files are written by a python script from a template
  38. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  39. *.manifest
  40. *.spec
  41. # Installer logs
  42. pip-log.txt
  43. pip-delete-this-directory.txt
  44. # Unit test / coverage reports
  45. htmlcov/
  46. .tox/
  47. .coverage
  48. .coverage.*
  49. .cache
  50. nosetests.xml
  51. coverage.xml
  52. *,cover
  53. # Translations
  54. *.mo
  55. *.pot
  56. # Django stuff:
  57. *.log
  58. # Sphinx documentation
  59. docs/_build/
  60. # PyBuilder
  61. target/
  62. # ---> VisualStudioCode
  63. .settings
  64. # ---> VisualStudio
  65. ## Ignore Visual Studio temporary files, build results, and
  66. ## files generated by popular Visual Studio add-ons.
  67. # User-specific files
  68. *.suo
  69. *.user
  70. *.userosscache
  71. *.sln.docstates
  72. # User-specific files (MonoDevelop/Xamarin Studio)
  73. *.userprefs
  74. # Build results
  75. [Dd]ebug/
  76. [Dd]ebugPublic/
  77. [Rr]elease/
  78. [Rr]eleases/
  79. x64/
  80. x86/
  81. build/
  82. bld/
  83. [Bb]in/
  84. [Oo]bj/
  85. # Visual Studio 2015 cache/options directory
  86. .vs/
  87. # Uncomment if you have tasks that create the project's static files in wwwroot
  88. #wwwroot/
  89. # MSTest test Results
  90. [Tt]est[Rr]esult*/
  91. [Bb]uild[Ll]og.*
  92. # NUNIT
  93. *.VisualState.xml
  94. TestResult.xml
  95. # Build Results of an ATL Project
  96. [Dd]ebugPS/
  97. [Rr]eleasePS/
  98. dlldata.c
  99. # DNX
  100. project.lock.json
  101. artifacts/
  102. *_i.c
  103. *_p.c
  104. *_i.h
  105. *.ilk
  106. *.meta
  107. *.obj
  108. *.pch
  109. *.pdb
  110. *.pgc
  111. *.pgd
  112. *.rsp
  113. *.sbr
  114. *.tlb
  115. *.tli
  116. *.tlh
  117. *.tmp
  118. *.tmp_proj
  119. *.log
  120. *.vspscc
  121. *.vssscc
  122. .builds
  123. *.pidb
  124. *.svclog
  125. *.scc
  126. # Chutzpah Test files
  127. _Chutzpah*
  128. # Visual C++ cache files
  129. ipch/
  130. *.aps
  131. *.ncb
  132. *.opensdf
  133. *.sdf
  134. *.cachefile
  135. # Visual Studio profiler
  136. *.psess
  137. *.vsp
  138. *.vspx
  139. *.sap
  140. # TFS 2012 Local Workspace
  141. $tf/
  142. # Guidance Automation Toolkit
  143. *.gpState
  144. # ReSharper is a .NET coding add-in
  145. _ReSharper*/
  146. *.[Rr]e[Ss]harper
  147. *.DotSettings.user
  148. # JustCode is a .NET coding add-in
  149. .JustCode
  150. # TeamCity is a build add-in
  151. _TeamCity*
  152. # DotCover is a Code Coverage Tool
  153. *.dotCover
  154. # NCrunch
  155. _NCrunch_*
  156. .*crunch*.local.xml
  157. nCrunchTemp_*
  158. # MightyMoose
  159. *.mm.*
  160. AutoTest.Net/
  161. # Web workbench (sass)
  162. .sass-cache/
  163. # Installshield output folder
  164. [Ee]xpress/
  165. # DocProject is a documentation generator add-in
  166. DocProject/buildhelp/
  167. DocProject/Help/*.HxT
  168. DocProject/Help/*.HxC
  169. DocProject/Help/*.hhc
  170. DocProject/Help/*.hhk
  171. DocProject/Help/*.hhp
  172. DocProject/Help/Html2
  173. DocProject/Help/html
  174. # Click-Once directory
  175. publish/
  176. # Publish Web Output
  177. *.[Pp]ublish.xml
  178. *.azurePubxml
  179. # TODO: Comment the next line if you want to checkin your web deploy settings
  180. # but database connection strings (with potential passwords) will be unencrypted
  181. *.pubxml
  182. *.publishproj
  183. # NuGet Packages
  184. *.nupkg
  185. # The packages folder can be ignored because of Package Restore
  186. **/packages/*
  187. # except build/, which is used as an MSBuild target.
  188. !**/packages/build/
  189. # Uncomment if necessary however generally it will be regenerated when needed
  190. #!**/packages/repositories.config
  191. # Windows Azure Build Output
  192. csx/
  193. *.build.csdef
  194. # Windows Store app package directory
  195. AppPackages/
  196. # Visual Studio cache files
  197. # files ending in .cache can be ignored
  198. *.[Cc]ache
  199. # but keep track of directories ending in .cache
  200. !*.[Cc]ache/
  201. # Others
  202. ClientBin/
  203. [Ss]tyle[Cc]op.*
  204. ~$*
  205. *~
  206. *.dbmdl
  207. *.dbproj.schemaview
  208. *.pfx
  209. *.publishsettings
  210. node_modules/
  211. orleans.codegen.cs
  212. # RIA/Silverlight projects
  213. Generated_Code/
  214. # Backup & report files from converting an old project file
  215. # to a newer Visual Studio version. Backup files are not needed,
  216. # because we have git ;-)
  217. _UpgradeReport_Files/
  218. Backup*/
  219. UpgradeLog*.XML
  220. UpgradeLog*.htm
  221. # SQL Server files
  222. *.mdf
  223. *.ldf
  224. # Business Intelligence projects
  225. *.rdl.data
  226. *.bim.layout
  227. *.bim_*.settings
  228. # Microsoft Fakes
  229. FakesAssemblies/
  230. # Node.js Tools for Visual Studio
  231. .ntvs_analysis.dat
  232. # Visual Studio 6 build log
  233. *.plg
  234. # Visual Studio 6 workspace options file
  235. *.opt
  236. # Visual Studio LightSwitch build output
  237. **/*.HTMLClient/GeneratedArtifacts
  238. **/*.DesktopClient/GeneratedArtifacts
  239. **/*.DesktopClient/ModelManifest.xml
  240. **/*.Server/GeneratedArtifacts
  241. **/*.Server/ModelManifest.xml
  242. _Pvt_Extensions
  243. # ---> VirtualEnv
  244. # Virtualenv
  245. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  246. .Python
  247. [Bb]in
  248. [Ii]nclude
  249. [Ll]ib
  250. [Ll]ocal
  251. pyvenv.cfg
  252. pip-selfcheck.json
  253. # ---> Vim
  254. [._]*.s[a-w][a-z]
  255. [._]s[a-w][a-z]
  256. *.un~
  257. Session.vim
  258. .netrwhist
  259. *~
  260. # ---> Sass
  261. .sass-cache/
  262. *.css.map