.gitignore 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### JetBrains template
  3. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  4. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  5. # User-specific stuff:
  6. .idea/**/workspace.xml
  7. .idea/**/tasks.xml
  8. .idea/dictionaries
  9. # Sensitive or high-churn files:
  10. .idea/**/dataSources/
  11. .idea/**/dataSources.ids
  12. .idea/**/dataSources.xml
  13. .idea/**/dataSources.local.xml
  14. .idea/**/sqlDataSources.xml
  15. .idea/**/dynamic.xml
  16. .idea/**/uiDesigner.xml
  17. # Gradle:
  18. .idea/**/gradle.xml
  19. .idea/**/libraries
  20. # CMake
  21. cmake-build-debug/
  22. # Mongo Explorer plugin:
  23. .idea/**/mongoSettings.xml
  24. ## File-based project format:
  25. *.iws
  26. ## Plugin-specific files:
  27. # IntelliJ
  28. out/
  29. # mpeltonen/sbt-idea plugin
  30. .idea_modules/
  31. # JIRA plugin
  32. atlassian-ide-plugin.xml
  33. # Cursive Clojure plugin
  34. .idea/replstate.xml
  35. # Crashlytics plugin (for Android Studio and IntelliJ)
  36. com_crashlytics_export_strings.xml
  37. crashlytics.properties
  38. crashlytics-build.properties
  39. fabric.properties
  40. ### VisualStudio template
  41. ## Ignore Visual Studio temporary files, build results, and
  42. ## files generated by popular Visual Studio add-ons.
  43. ##
  44. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  45. # User-specific files
  46. *.suo
  47. *.user
  48. *.userosscache
  49. *.sln.docstates
  50. # User-specific files (MonoDevelop/Xamarin Studio)
  51. *.userprefs
  52. # Build results
  53. [Dd]ebug/
  54. [Dd]ebugPublic/
  55. [Rr]elease/
  56. [Rr]eleases/
  57. x64/
  58. x86/
  59. bld/
  60. [Bb]in/
  61. [Oo]bj/
  62. [Ll]og/
  63. # Visual Studio 2015 cache/options directory
  64. .vs/
  65. # Uncomment if you have tasks that create the project's static files in wwwroot
  66. #wwwroot/
  67. # MSTest test Results
  68. [Tt]est[Rr]esult*/
  69. [Bb]uild[Ll]og.*
  70. # NUNIT
  71. *.VisualState.xml
  72. TestResult.xml
  73. # Build Results of an ATL Project
  74. [Dd]ebugPS/
  75. [Rr]eleasePS/
  76. dlldata.c
  77. # Benchmark Results
  78. BenchmarkDotNet.Artifacts/
  79. # .NET Core
  80. project.lock.json
  81. project.fragment.lock.json
  82. artifacts/
  83. **/Properties/launchSettings.json
  84. *_i.c
  85. *_p.c
  86. *_i.h
  87. *.ilk
  88. *.meta
  89. *.obj
  90. *.pch
  91. *.pdb
  92. *.pgc
  93. *.pgd
  94. *.rsp
  95. *.sbr
  96. *.tlb
  97. *.tli
  98. *.tlh
  99. *.tmp
  100. *.tmp_proj
  101. *.log
  102. *.vspscc
  103. *.vssscc
  104. .builds
  105. *.pidb
  106. *.svclog
  107. *.scc
  108. # Chutzpah Test files
  109. _Chutzpah*
  110. # Visual C++ cache files
  111. ipch/
  112. *.aps
  113. *.ncb
  114. *.opendb
  115. *.opensdf
  116. *.sdf
  117. *.cachefile
  118. *.VC.db
  119. *.VC.VC.opendb
  120. # Visual Studio profiler
  121. *.psess
  122. *.vsp
  123. *.vspx
  124. *.sap
  125. # Visual Studio Trace Files
  126. *.e2e
  127. # TFS 2012 Local Workspace
  128. $tf/
  129. # Guidance Automation Toolkit
  130. *.gpState
  131. # ReSharper is a .NET coding add-in
  132. _ReSharper*/
  133. *.[Rr]e[Ss]harper
  134. *.DotSettings.user
  135. # JustCode is a .NET coding add-in
  136. .JustCode
  137. # TeamCity is a build add-in
  138. _TeamCity*
  139. # DotCover is a Code Coverage Tool
  140. *.dotCover
  141. # AxoCover is a Code Coverage Tool
  142. .axoCover/*
  143. !.axoCover/settings.json
  144. # Visual Studio code coverage results
  145. *.coverage
  146. *.coveragexml
  147. # NCrunch
  148. _NCrunch_*
  149. .*crunch*.local.xml
  150. nCrunchTemp_*
  151. # MightyMoose
  152. *.mm.*
  153. AutoTest.Net/
  154. # Web workbench (sass)
  155. .sass-cache/
  156. # Installshield output folder
  157. [Ee]xpress/
  158. # DocProject is a documentation generator add-in
  159. DocProject/buildhelp/
  160. DocProject/Help/*.HxT
  161. DocProject/Help/*.HxC
  162. DocProject/Help/*.hhc
  163. DocProject/Help/*.hhk
  164. DocProject/Help/*.hhp
  165. DocProject/Help/Html2
  166. DocProject/Help/html
  167. # Click-Once directory
  168. publish/
  169. # Publish Web Output
  170. *.[Pp]ublish.xml
  171. *.azurePubxml
  172. # Note: Comment the next line if you want to checkin your web deploy settings,
  173. # but database connection strings (with potential passwords) will be unencrypted
  174. *.pubxml
  175. *.publishproj
  176. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  177. # checkin your Azure Web App publish settings, but sensitive information contained
  178. # in these scripts will be unencrypted
  179. PublishScripts/
  180. # NuGet Packages
  181. *.nupkg
  182. # The packages folder can be ignored because of Package Restore
  183. **/[Pp]ackages/*
  184. # except build/, which is used as an MSBuild target.
  185. !**/[Pp]ackages/build/
  186. # Uncomment if necessary however generally it will be regenerated when needed
  187. #!**/[Pp]ackages/repositories.config
  188. # NuGet v3's project.json files produces more ignorable files
  189. *.nuget.props
  190. *.nuget.targets
  191. # Microsoft Azure Build Output
  192. csx/
  193. *.build.csdef
  194. # Microsoft Azure Emulator
  195. ecf/
  196. rcf/
  197. # Windows Store app package directories and files
  198. AppPackages/
  199. BundleArtifacts/
  200. Package.StoreAssociation.xml
  201. _pkginfo.txt
  202. *.appx
  203. # Visual Studio cache files
  204. # files ending in .cache can be ignored
  205. *.[Cc]ache
  206. # but keep track of directories ending in .cache
  207. !*.[Cc]ache/
  208. # Others
  209. ClientBin/
  210. ~$*
  211. *~
  212. *.dbmdl
  213. *.dbproj.schemaview
  214. *.jfm
  215. *.pfx
  216. *.publishsettings
  217. orleans.codegen.cs
  218. # Since there are multiple workflows, uncomment next line to ignore bower_components
  219. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  220. #bower_components/
  221. # RIA/Silverlight projects
  222. Generated_Code/
  223. # Backup & report files from converting an old project file
  224. # to a newer Visual Studio version. Backup files are not needed,
  225. # because we have git ;-)
  226. _UpgradeReport_Files/
  227. Backup*/
  228. UpgradeLog*.XML
  229. UpgradeLog*.htm
  230. # SQL Server files
  231. *.mdf
  232. *.ldf
  233. *.ndf
  234. # Business Intelligence projects
  235. *.rdl.data
  236. *.bim.layout
  237. *.bim_*.settings
  238. # Microsoft Fakes
  239. FakesAssemblies/
  240. # GhostDoc plugin setting file
  241. *.GhostDoc.xml
  242. # Node.js Tools for Visual Studio
  243. .ntvs_analysis.dat
  244. node_modules/
  245. # Typescript v1 declaration files
  246. typings/
  247. # Visual Studio 6 build log
  248. *.plg
  249. # Visual Studio 6 workspace options file
  250. *.opt
  251. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  252. *.vbw
  253. # Visual Studio LightSwitch build output
  254. **/*.HTMLClient/GeneratedArtifacts
  255. **/*.DesktopClient/GeneratedArtifacts
  256. **/*.DesktopClient/ModelManifest.xml
  257. **/*.Server/GeneratedArtifacts
  258. **/*.Server/ModelManifest.xml
  259. _Pvt_Extensions
  260. # Paket dependency manager
  261. .paket/paket.exe
  262. paket-files/
  263. # FAKE - F# Make
  264. .fake/
  265. # JetBrains Rider
  266. .idea/
  267. *.sln.iml
  268. # IDE - VSCode
  269. .vscode/*
  270. !.vscode/settings.json
  271. !.vscode/tasks.json
  272. !.vscode/launch.json
  273. !.vscode/extensions.json
  274. # CodeRush
  275. .cr/
  276. # Python Tools for Visual Studio (PTVS)
  277. __pycache__/
  278. *.pyc
  279. # Cake - Uncomment if you are using it
  280. # tools/**
  281. # !tools/packages.config
  282. # Tabs Studio
  283. *.tss
  284. # Telerik's JustMock configuration file
  285. *.jmconfig
  286. # BizTalk build output
  287. *.btp.cs
  288. *.btm.cs
  289. *.odx.cs
  290. *.xsd.cs
  291. # OpenCover UI analysis results
  292. OpenCover/
  293. coverage/
  294. ### macOS template
  295. # General
  296. .DS_Store
  297. .AppleDouble
  298. .LSOverride
  299. # Icon must end with two \r
  300. Icon
  301. # Thumbnails
  302. ._*
  303. # Files that might appear in the root of a volume
  304. .DocumentRevisions-V100
  305. .fseventsd
  306. .Spotlight-V100
  307. .TemporaryItems
  308. .Trashes
  309. .VolumeIcon.icns
  310. .com.apple.timemachine.donotpresent
  311. # Directories potentially created on remote AFP share
  312. .AppleDB
  313. .AppleDesktop
  314. Network Trash Folder
  315. Temporary Items
  316. .apdisk
  317. =======
  318. # Local
  319. .env
  320. dist
  321. .webpack
  322. .serverless/**/*.zip
  323. dev.yaml