.gitignore 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734
  1. HELP.md
  2. target/
  3. !.mvn/wrapper/maven-wrapper.jar
  4. !**/src/main/**/target/
  5. !**/src/test/**/target/
  6. ### STS ###
  7. .apt_generated
  8. .classpath
  9. .factorypath
  10. .project
  11. .settings
  12. .springBeans
  13. .sts4-cache
  14. ### IntelliJ IDEA ###
  15. .idea
  16. *.iws
  17. *.iml
  18. *.ipr
  19. ### NetBeans ###
  20. /nbproject/private/
  21. /nbbuild/
  22. /dist/
  23. /nbdist/
  24. /.nb-gradle/
  25. build/
  26. !**/src/main/**/build/
  27. !**/src/test/**/build/
  28. ### VS Code ###
  29. .vscode/
  30. ### Java template
  31. # Compiled class file
  32. *.class
  33. # Log file
  34. *.log
  35. # BlueJ files
  36. *.ctxt
  37. # Mobile Tools for Java (J2ME)
  38. .mtj.tmp/
  39. # Package Files #
  40. *.jar
  41. *.war
  42. *.nar
  43. *.ear
  44. *.zip
  45. *.tar.gz
  46. *.rar
  47. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  48. hs_err_pid*
  49. replay_pid*
  50. ### Maven template
  51. pom.xml.tag
  52. pom.xml.releaseBackup
  53. pom.xml.versionsBackup
  54. pom.xml.next
  55. release.properties
  56. dependency-reduced-pom.xml
  57. buildNumber.properties
  58. .mvn/timing.properties
  59. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  60. .mvn/wrapper/maven-wrapper.jar
  61. # Eclipse m2e generated files
  62. # Eclipse Core
  63. # JDT-specific (Eclipse Java Development Tools)
  64. ### VisualStudioCode template
  65. .vscode/*
  66. !.vscode/settings.json
  67. !.vscode/tasks.json
  68. !.vscode/launch.json
  69. !.vscode/extensions.json
  70. !.vscode/*.code-snippets
  71. # Local History for Visual Studio Code
  72. .history/
  73. # Built Visual Studio Code Extensions
  74. *.vsix
  75. ### JetBrains+all template
  76. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  77. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  78. # User-specific stuff
  79. .idea/**/workspace.xml
  80. .idea/**/tasks.xml
  81. .idea/**/usage.statistics.xml
  82. .idea/**/dictionaries
  83. .idea/**/shelf
  84. # AWS User-specific
  85. .idea/**/aws.xml
  86. # Generated files
  87. .idea/**/contentModel.xml
  88. # Sensitive or high-churn files
  89. .idea/**/dataSources/
  90. .idea/**/dataSources.ids
  91. .idea/**/dataSources.local.xml
  92. .idea/**/sqlDataSources.xml
  93. .idea/**/dynamic.xml
  94. .idea/**/uiDesigner.xml
  95. .idea/**/dbnavigator.xml
  96. # Gradle
  97. .idea/**/gradle.xml
  98. .idea/**/libraries
  99. # Gradle and Maven with auto-import
  100. # When using Gradle or Maven with auto-import, you should exclude module files,
  101. # since they will be recreated, and may cause churn. Uncomment if using
  102. # auto-import.
  103. # .idea/artifacts
  104. # .idea/compiler.xml
  105. # .idea/jarRepositories.xml
  106. # .idea/modules.xml
  107. # .idea/*.iml
  108. # .idea/modules
  109. # *.iml
  110. # *.ipr
  111. # CMake
  112. cmake-build-*/
  113. # Mongo Explorer plugin
  114. .idea/**/mongoSettings.xml
  115. # File-based project format
  116. # IntelliJ
  117. out/
  118. # mpeltonen/sbt-idea plugin
  119. .idea_modules/
  120. # JIRA plugin
  121. atlassian-ide-plugin.xml
  122. # Cursive Clojure plugin
  123. .idea/replstate.xml
  124. # SonarLint plugin
  125. .idea/sonarlint/
  126. # Crashlytics plugin (for Android Studio and IntelliJ)
  127. com_crashlytics_export_strings.xml
  128. crashlytics.properties
  129. crashlytics-build.properties
  130. fabric.properties
  131. # Editor-based Rest Client
  132. .idea/httpRequests
  133. # Android studio 3.1+ serialized cache file
  134. .idea/caches/build_file_checksums.ser
  135. ### JetBrains template
  136. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  137. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  138. # User-specific stuff
  139. # AWS User-specific
  140. # Generated files
  141. # Sensitive or high-churn files
  142. # Gradle
  143. # Gradle and Maven with auto-import
  144. # When using Gradle or Maven with auto-import, you should exclude module files,
  145. # since they will be recreated, and may cause churn. Uncomment if using
  146. # auto-import.
  147. # .idea/artifacts
  148. # .idea/compiler.xml
  149. # .idea/jarRepositories.xml
  150. # .idea/modules.xml
  151. # .idea/*.iml
  152. # .idea/modules
  153. # *.iml
  154. # *.ipr
  155. # CMake
  156. # Mongo Explorer plugin
  157. # File-based project format
  158. # IntelliJ
  159. # mpeltonen/sbt-idea plugin
  160. # JIRA plugin
  161. # Cursive Clojure plugin
  162. # SonarLint plugin
  163. # Crashlytics plugin (for Android Studio and IntelliJ)
  164. # Editor-based Rest Client
  165. # Android studio 3.1+ serialized cache file
  166. ### Eclipse template
  167. .metadata
  168. bin/
  169. tmp/
  170. *.tmp
  171. *.bak
  172. *.swp
  173. *~.nib
  174. local.properties
  175. .settings/
  176. .loadpath
  177. .recommenders
  178. # External tool builders
  179. .externalToolBuilders/
  180. # Locally stored "Eclipse launch configurations"
  181. *.launch
  182. # PyDev specific (Python IDE for Eclipse)
  183. *.pydevproject
  184. # CDT-specific (C/C++ Development Tooling)
  185. .cproject
  186. # CDT- autotools
  187. .autotools
  188. # Java annotation processor (APT)
  189. # PDT-specific (PHP Development Tools)
  190. .buildpath
  191. # sbteclipse plugin
  192. .target
  193. # Tern plugin
  194. .tern-project
  195. # TeXlipse plugin
  196. .texlipse
  197. # STS (Spring Tool Suite)
  198. # Code Recommenders
  199. .recommenders/
  200. # Annotation Processing
  201. .apt_generated/
  202. .apt_generated_test/
  203. # Scala IDE specific (Scala & Java development for Eclipse)
  204. .cache-main
  205. .scala_dependencies
  206. .worksheet
  207. # Uncomment this line if you wish to ignore the project description file.
  208. # Typically, this file would be tracked if it contains build/dependency configurations:
  209. #.project
  210. ### Example user template template
  211. ### Example user template
  212. # IntelliJ project files
  213. out
  214. gen
  215. ### VisualStudio template
  216. ## Ignore Visual Studio temporary files, build results, and
  217. ## files generated by popular Visual Studio add-ons.
  218. ##
  219. ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
  220. # User-specific files
  221. *.rsuser
  222. *.suo
  223. *.user
  224. *.userosscache
  225. *.sln.docstates
  226. # User-specific files (MonoDevelop/Xamarin Studio)
  227. *.userprefs
  228. # Mono auto generated files
  229. mono_crash.*
  230. # Build results
  231. [Dd]ebug/
  232. [Dd]ebugPublic/
  233. [Rr]elease/
  234. [Rr]eleases/
  235. x64/
  236. x86/
  237. [Ww][Ii][Nn]32/
  238. [Aa][Rr][Mm]/
  239. [Aa][Rr][Mm]64/
  240. bld/
  241. [Bb]in/
  242. [Oo]bj/
  243. [Ll]og/
  244. [Ll]ogs/
  245. # Visual Studio 2015/2017 cache/options directory
  246. .vs/
  247. # Uncomment if you have tasks that create the project's static files in wwwroot
  248. #wwwroot/
  249. # Visual Studio 2017 auto generated files
  250. Generated\ Files/
  251. # MSTest test Results
  252. [Tt]est[Rr]esult*/
  253. [Bb]uild[Ll]og.*
  254. # NUnit
  255. *.VisualState.xml
  256. TestResult.xml
  257. nunit-*.xml
  258. # Build Results of an ATL Project
  259. [Dd]ebugPS/
  260. [Rr]eleasePS/
  261. dlldata.c
  262. # Benchmark Results
  263. BenchmarkDotNet.Artifacts/
  264. # .NET Core
  265. project.lock.json
  266. project.fragment.lock.json
  267. artifacts/
  268. # ASP.NET Scaffolding
  269. ScaffoldingReadMe.txt
  270. # StyleCop
  271. StyleCopReport.xml
  272. # Files built by Visual Studio
  273. *_i.c
  274. *_p.c
  275. *_h.h
  276. *.ilk
  277. *.meta
  278. *.obj
  279. *.iobj
  280. *.pch
  281. *.pdb
  282. *.ipdb
  283. *.pgc
  284. *.pgd
  285. *.rsp
  286. *.sbr
  287. *.tlb
  288. *.tli
  289. *.tlh
  290. *.tmp_proj
  291. *_wpftmp.csproj
  292. *.tlog
  293. *.vspscc
  294. *.vssscc
  295. .builds
  296. *.pidb
  297. *.svclog
  298. *.scc
  299. # Chutzpah Test files
  300. _Chutzpah*
  301. # Visual C++ cache files
  302. ipch/
  303. *.aps
  304. *.ncb
  305. *.opendb
  306. *.opensdf
  307. *.sdf
  308. *.cachefile
  309. *.VC.db
  310. *.VC.VC.opendb
  311. # Visual Studio profiler
  312. *.psess
  313. *.vsp
  314. *.vspx
  315. *.sap
  316. # Visual Studio Trace Files
  317. *.e2e
  318. # TFS 2012 Local Workspace
  319. $tf/
  320. # Guidance Automation Toolkit
  321. *.gpState
  322. # ReSharper is a .NET coding add-in
  323. _ReSharper*/
  324. *.[Rr]e[Ss]harper
  325. *.DotSettings.user
  326. # TeamCity is a build add-in
  327. _TeamCity*
  328. # DotCover is a Code Coverage Tool
  329. *.dotCover
  330. # AxoCover is a Code Coverage Tool
  331. .axoCover/*
  332. !.axoCover/settings.json
  333. # Coverlet is a free, cross platform Code Coverage Tool
  334. coverage*.json
  335. coverage*.xml
  336. coverage*.info
  337. # Visual Studio code coverage results
  338. *.coverage
  339. *.coveragexml
  340. # NCrunch
  341. _NCrunch_*
  342. .*crunch*.local.xml
  343. nCrunchTemp_*
  344. # MightyMoose
  345. *.mm.*
  346. AutoTest.Net/
  347. # Web workbench (sass)
  348. .sass-cache/
  349. # Installshield output folder
  350. [Ee]xpress/
  351. # DocProject is a documentation generator add-in
  352. DocProject/buildhelp/
  353. DocProject/Help/*.HxT
  354. DocProject/Help/*.HxC
  355. DocProject/Help/*.hhc
  356. DocProject/Help/*.hhk
  357. DocProject/Help/*.hhp
  358. DocProject/Help/Html2
  359. DocProject/Help/html
  360. # Click-Once directory
  361. publish/
  362. # Publish Web Output
  363. *.[Pp]ublish.xml
  364. *.azurePubxml
  365. # Note: Comment the next line if you want to checkin your web deploy settings,
  366. # but database connection strings (with potential passwords) will be unencrypted
  367. *.pubxml
  368. *.publishproj
  369. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  370. # checkin your Azure Web App publish settings, but sensitive information contained
  371. # in these scripts will be unencrypted
  372. PublishScripts/
  373. # NuGet Packages
  374. *.nupkg
  375. # NuGet Symbol Packages
  376. *.snupkg
  377. # The packages folder can be ignored because of Package Restore
  378. **/[Pp]ackages/*
  379. # except build/, which is used as an MSBuild target.
  380. !**/[Pp]ackages/build/
  381. # Uncomment if necessary however generally it will be regenerated when needed
  382. #!**/[Pp]ackages/repositories.config
  383. # NuGet v3's project.json files produces more ignorable files
  384. *.nuget.props
  385. *.nuget.targets
  386. # Microsoft Azure Build Output
  387. csx/
  388. *.build.csdef
  389. # Microsoft Azure Emulator
  390. ecf/
  391. rcf/
  392. # Windows Store app package directories and files
  393. AppPackages/
  394. BundleArtifacts/
  395. Package.StoreAssociation.xml
  396. _pkginfo.txt
  397. *.appx
  398. *.appxbundle
  399. *.appxupload
  400. # Visual Studio cache files
  401. # files ending in .cache can be ignored
  402. *.[Cc]ache
  403. # but keep track of directories ending in .cache
  404. !?*.[Cc]ache/
  405. # Others
  406. ClientBin/
  407. ~$*
  408. *~
  409. *.dbmdl
  410. *.dbproj.schemaview
  411. *.jfm
  412. *.pfx
  413. *.publishsettings
  414. orleans.codegen.cs
  415. # Including strong name files can present a security risk
  416. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  417. #*.snk
  418. # Since there are multiple workflows, uncomment next line to ignore bower_components
  419. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  420. #bower_components/
  421. # RIA/Silverlight projects
  422. Generated_Code/
  423. # Backup & report files from converting an old project file
  424. # to a newer Visual Studio version. Backup files are not needed,
  425. # because we have git ;-)
  426. _UpgradeReport_Files/
  427. Backup*/
  428. UpgradeLog*.XML
  429. UpgradeLog*.htm
  430. ServiceFabricBackup/
  431. *.rptproj.bak
  432. # SQL Server files
  433. *.mdf
  434. *.ldf
  435. *.ndf
  436. # Business Intelligence projects
  437. *.rdl.data
  438. *.bim.layout
  439. *.bim_*.settings
  440. *.rptproj.rsuser
  441. *- [Bb]ackup.rdl
  442. *- [Bb]ackup ([0-9]).rdl
  443. *- [Bb]ackup ([0-9][0-9]).rdl
  444. # Microsoft Fakes
  445. FakesAssemblies/
  446. # GhostDoc plugin setting file
  447. *.GhostDoc.xml
  448. # Node.js Tools for Visual Studio
  449. .ntvs_analysis.dat
  450. node_modules/
  451. # Visual Studio 6 build log
  452. *.plg
  453. # Visual Studio 6 workspace options file
  454. *.opt
  455. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  456. *.vbw
  457. # Visual Studio 6 auto-generated project file (contains which files were open etc.)
  458. *.vbp
  459. # Visual Studio 6 workspace and project file (working project files containing files to include in project)
  460. *.dsw
  461. *.dsp
  462. # Visual Studio 6 technical files
  463. # Visual Studio LightSwitch build output
  464. **/*.HTMLClient/GeneratedArtifacts
  465. **/*.DesktopClient/GeneratedArtifacts
  466. **/*.DesktopClient/ModelManifest.xml
  467. **/*.Server/GeneratedArtifacts
  468. **/*.Server/ModelManifest.xml
  469. _Pvt_Extensions
  470. # Paket dependency manager
  471. .paket/paket.exe
  472. paket-files/
  473. # FAKE - F# Make
  474. .fake/
  475. # CodeRush personal settings
  476. .cr/personal
  477. # Python Tools for Visual Studio (PTVS)
  478. __pycache__/
  479. *.pyc
  480. # Cake - Uncomment if you are using it
  481. # tools/**
  482. # !tools/packages.config
  483. # Tabs Studio
  484. *.tss
  485. # Telerik's JustMock configuration file
  486. *.jmconfig
  487. # BizTalk build output
  488. *.btp.cs
  489. *.btm.cs
  490. *.odx.cs
  491. *.xsd.cs
  492. # OpenCover UI analysis results
  493. OpenCover/
  494. # Azure Stream Analytics local run output
  495. ASALocalRun/
  496. # MSBuild Binary and Structured Log
  497. *.binlog
  498. # NVidia Nsight GPU debugger configuration file
  499. *.nvuser
  500. # MFractors (Xamarin productivity tool) working folder
  501. .mfractor/
  502. # Local History for Visual Studio
  503. .localhistory/
  504. # Visual Studio History (VSHistory) files
  505. .vshistory/
  506. # BeatPulse healthcheck temp database
  507. healthchecksdb
  508. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  509. MigrationBackup/
  510. # Ionide (cross platform F# VS Code tools) working folder
  511. .ionide/
  512. # Fody - auto-generated XML schema
  513. FodyWeavers.xsd
  514. # VS Code files for those working on multiple tools
  515. *.code-workspace
  516. # Local History for Visual Studio Code
  517. # Windows Installer files from build outputs
  518. *.cab
  519. *.msi
  520. *.msix
  521. *.msm
  522. *.msp
  523. # JetBrains Rider
  524. *.sln.iml
  525. ### JetBrains+iml template
  526. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  527. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  528. # User-specific stuff
  529. # AWS User-specific
  530. # Generated files
  531. # Sensitive or high-churn files
  532. # Gradle
  533. # Gradle and Maven with auto-import
  534. # When using Gradle or Maven with auto-import, you should exclude module files,
  535. # since they will be recreated, and may cause churn. Uncomment if using
  536. # auto-import.
  537. # .idea/artifacts
  538. # .idea/compiler.xml
  539. # .idea/jarRepositories.xml
  540. # .idea/modules.xml
  541. # .idea/*.iml
  542. # .idea/modules
  543. # *.iml
  544. # *.ipr
  545. # CMake
  546. # Mongo Explorer plugin
  547. # File-based project format
  548. # IntelliJ
  549. # mpeltonen/sbt-idea plugin
  550. # JIRA plugin
  551. # Cursive Clojure plugin
  552. # SonarLint plugin
  553. # Crashlytics plugin (for Android Studio and IntelliJ)
  554. # Editor-based Rest Client
  555. # Android studio 3.1+ serialized cache file
  556. ### Kotlin template
  557. # Compiled class file
  558. # Log file
  559. # BlueJ files
  560. # Mobile Tools for Java (J2ME)
  561. # Package Files #
  562. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml