.gitignore 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  1. *.iml
  2. **/target
  3. /logs
  4. **/.idea
  5. .idea
  6. /.idea
  7. **/logs
  8. *.jar
  9. ### VisualStudio template
  10. ## Ignore Visual Studio temporary files, build results, and
  11. ## files generated by popular Visual Studio add-ons.
  12. ##
  13. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  14. # User-specific files
  15. *.suo
  16. *.user
  17. *.userosscache
  18. *.sln.docstates
  19. # User-specific files (MonoDevelop/Xamarin Studio)
  20. *.userprefs
  21. # Build results
  22. [Dd]ebug/
  23. [Dd]ebugPublic/
  24. [Rr]elease/
  25. [Rr]eleases/
  26. x64/
  27. x86/
  28. bld/
  29. [Bb]in/
  30. [Oo]bj/
  31. # Visual Studio 2015/2017 cache/options directory
  32. .vs/
  33. # Uncomment if you have tasks that create the project's static files in wwwroot
  34. #wwwroot/
  35. # Visual Studio 2017 auto generated files
  36. Generated\ Files/
  37. # MSTest test Results
  38. [Tt]est[Rr]esult*/
  39. [Bb]uild[Ll]og.*
  40. # NUNIT
  41. *.VisualState.xml
  42. TestResult.xml
  43. # Build Results of an ATL Project
  44. [Dd]ebugPS/
  45. [Rr]eleasePS/
  46. dlldata.c
  47. # Benchmark Results
  48. BenchmarkDotNet.Artifacts/
  49. # .NET Core
  50. project.lock.json
  51. project.fragment.lock.json
  52. artifacts/
  53. # StyleCop
  54. StyleCopReport.xml
  55. # Files built by Visual Studio
  56. *_i.c
  57. *_p.c
  58. *_i.h
  59. *.ilk
  60. *.meta
  61. *.obj
  62. *.iobj
  63. *.pch
  64. *.pdb
  65. *.ipdb
  66. *.pgc
  67. *.pgd
  68. *.rsp
  69. *.sbr
  70. *.tlb
  71. *.tli
  72. *.tlh
  73. *.tmp
  74. *.tmp_proj
  75. *.log
  76. *.vspscc
  77. *.vssscc
  78. .builds
  79. *.pidb
  80. *.svclog
  81. *.scc
  82. # Chutzpah Test files
  83. _Chutzpah*
  84. # Visual C++ cache files
  85. ipch/
  86. *.aps
  87. *.ncb
  88. *.opendb
  89. *.opensdf
  90. *.sdf
  91. *.cachefile
  92. *.VC.db
  93. *.VC.VC.opendb
  94. # Visual Studio profiler
  95. *.psess
  96. *.vsp
  97. *.vspx
  98. *.sap
  99. # Visual Studio Trace Files
  100. *.e2e
  101. # TFS 2012 Local Workspace
  102. $tf/
  103. # Guidance Automation Toolkit
  104. *.gpState
  105. # ReSharper is a .NET coding add-in
  106. _ReSharper*/
  107. *.[Rr]e[Ss]harper
  108. *.DotSettings.user
  109. # JustCode is a .NET coding add-in
  110. .JustCode
  111. # TeamCity is a build add-in
  112. _TeamCity*
  113. # DotCover is a Code Coverage Tool
  114. *.dotCover
  115. # AxoCover is a Code Coverage Tool
  116. .axoCover/*
  117. !.axoCover/settings.json
  118. # Visual Studio code coverage results
  119. *.coverage
  120. *.coveragexml
  121. # NCrunch
  122. _NCrunch_*
  123. .*crunch*.local.xml
  124. nCrunchTemp_*
  125. # MightyMoose
  126. *.mm.*
  127. AutoTest.Net/
  128. # Web workbench (sass)
  129. .sass-cache/
  130. # Installshield output folder
  131. [Ee]xpress/
  132. # DocProject is a documentation generator add-in
  133. DocProject/buildhelp/
  134. DocProject/Help/*.HxT
  135. DocProject/Help/*.HxC
  136. DocProject/Help/*.hhc
  137. DocProject/Help/*.hhk
  138. DocProject/Help/*.hhp
  139. DocProject/Help/Html2
  140. DocProject/Help/html
  141. # Click-Once directory
  142. publish/
  143. # Publish Web Output
  144. *.[Pp]ublish.xml
  145. *.azurePubxml
  146. # Note: Comment the next line if you want to checkin your web deploy settings,
  147. # but database connection strings (with potential passwords) will be unencrypted
  148. *.pubxml
  149. *.publishproj
  150. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  151. # checkin your Azure Web App publish settings, but sensitive information contained
  152. # in these scripts will be unencrypted
  153. PublishScripts/
  154. # NuGet Packages
  155. *.nupkg
  156. # The packages folder can be ignored because of Package Restore
  157. **/[Pp]ackages/*
  158. # except build/, which is used as an MSBuild target.
  159. !**/[Pp]ackages/build/
  160. # Uncomment if necessary however generally it will be regenerated when needed
  161. #!**/[Pp]ackages/repositories.config
  162. # NuGet v3's project.json files produces more ignorable files
  163. *.nuget.props
  164. *.nuget.targets
  165. # Microsoft Azure Build Output
  166. csx/
  167. *.build.csdef
  168. # Microsoft Azure Emulator
  169. ecf/
  170. rcf/
  171. # Windows Store app package directories and files
  172. AppPackages/
  173. BundleArtifacts/
  174. Package.StoreAssociation.xml
  175. _pkginfo.txt
  176. *.appx
  177. # Visual Studio cache files
  178. # files ending in .cache can be ignored
  179. *.[Cc]ache
  180. # but keep track of directories ending in .cache
  181. !*.[Cc]ache/
  182. # Others
  183. ClientBin/
  184. ~$*
  185. *~
  186. *.dbmdl
  187. *.dbproj.schemaview
  188. *.jfm
  189. *.pfx
  190. *.publishsettings
  191. orleans.codegen.cs
  192. # Including strong name files can present a security risk
  193. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  194. #*.snk
  195. # Since there are multiple workflows, uncomment next line to ignore bower_components
  196. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  197. #bower_components/
  198. # RIA/Silverlight projects
  199. Generated_Code/
  200. # Backup & report files from converting an old project file
  201. # to a newer Visual Studio version. Backup files are not needed,
  202. # because we have git ;-)
  203. _UpgradeReport_Files/
  204. Backup*/
  205. UpgradeLog*.XML
  206. UpgradeLog*.htm
  207. ServiceFabricBackup/
  208. *.rptproj.bak
  209. # SQL Server files
  210. *.mdf
  211. *.ldf
  212. *.ndf
  213. # Business Intelligence projects
  214. *.rdl.data
  215. *.bim.layout
  216. *.bim_*.settings
  217. *.rptproj.rsuser
  218. # Microsoft Fakes
  219. FakesAssemblies/
  220. # GhostDoc plugin setting file
  221. *.GhostDoc.xml
  222. # Node.js Tools for Visual Studio
  223. .ntvs_analysis.dat
  224. node_modules/
  225. # Visual Studio 6 build log
  226. *.plg
  227. # Visual Studio 6 workspace options file
  228. *.opt
  229. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  230. *.vbw
  231. # Visual Studio LightSwitch build output
  232. **/*.HTMLClient/GeneratedArtifacts
  233. **/*.DesktopClient/GeneratedArtifacts
  234. **/*.DesktopClient/ModelManifest.xml
  235. **/*.Server/GeneratedArtifacts
  236. **/*.Server/ModelManifest.xml
  237. _Pvt_Extensions
  238. # Paket dependency manager
  239. .paket/paket.exe
  240. paket-files/
  241. # FAKE - F# Make
  242. .fake/
  243. # JetBrains Rider
  244. .idea/
  245. *.sln.iml
  246. # CodeRush
  247. .cr/
  248. # Python Tools for Visual Studio (PTVS)
  249. __pycache__/
  250. *.pyc
  251. # Cake - Uncomment if you are using it
  252. # tools/**
  253. # !tools/packages.config
  254. # Tabs Studio
  255. *.tss
  256. # Telerik's JustMock configuration file
  257. *.jmconfig
  258. # BizTalk build output
  259. *.btp.cs
  260. *.btm.cs
  261. *.odx.cs
  262. *.xsd.cs
  263. # OpenCover UI analysis results
  264. OpenCover/
  265. # Azure Stream Analytics local run output
  266. ASALocalRun/
  267. # MSBuild Binary and Structured Log
  268. *.binlog
  269. # NVidia Nsight GPU debugger configuration file
  270. *.nvuser
  271. # MFractors (Xamarin productivity tool) working folder
  272. .mfractor/
  273. ### Java template
  274. # Compiled class file
  275. *.class
  276. # Log file
  277. *.log
  278. # BlueJ files
  279. *.ctxt
  280. # Mobile Tools for Java (J2ME)
  281. .mtj.tmp/
  282. # Package Files #
  283. *.jar
  284. *.war
  285. *.nar
  286. *.ear
  287. *.zip
  288. *.tar.gz
  289. *.rar
  290. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  291. hs_err_pid*
  292. ### Kotlin template
  293. # Compiled class file
  294. *.class
  295. # Log file
  296. *.log
  297. # BlueJ files
  298. *.ctxt
  299. # Mobile Tools for Java (J2ME)
  300. .mtj.tmp/
  301. # Package Files #
  302. *.jar
  303. *.war
  304. *.nar
  305. *.ear
  306. *.zip
  307. *.tar.gz
  308. *.rar
  309. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  310. hs_err_pid*
  311. ### Redis template
  312. # Ignore redis binary dump (dump.rdb) files
  313. *.rdb
  314. ### Node template
  315. # Logs
  316. logs
  317. *.log
  318. npm-debug.log*
  319. yarn-debug.log*
  320. yarn-error.log*
  321. # Runtime data
  322. pids
  323. *.pid
  324. *.seed
  325. *.pid.lock
  326. # Directory for instrumented libs generated by jscoverage/JSCover
  327. lib-cov
  328. # Coverage directory used by tools like istanbul
  329. coverage
  330. # nyc test coverage
  331. .nyc_output
  332. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  333. .grunt
  334. # Bower dependency directory (https://bower.io/)
  335. bower_components
  336. # node-waf configuration
  337. .lock-wscript
  338. # Compiled binary addons (https://nodejs.org/api/addons.html)
  339. build/Release
  340. # Dependency directories
  341. node_modules/
  342. jspm_packages/
  343. # TypeScript v1 declaration files
  344. typings/
  345. # Optional npm cache directory
  346. .npm
  347. # Optional eslint cache
  348. .eslintcache
  349. # Optional REPL history
  350. .node_repl_history
  351. # Output of 'npm pack'
  352. *.tgz
  353. # Yarn Integrity file
  354. .yarn-integrity
  355. # dotenv environment variables file
  356. .env
  357. # next.js build output
  358. .next
  359. ### Android template
  360. # Built application files
  361. *.apk
  362. *.ap_
  363. # Files for the ART/Dalvik VM
  364. *.dex
  365. # Java class files
  366. *.class
  367. # Generated files
  368. bin/
  369. gen/
  370. out/
  371. # Gradle files
  372. .gradle/
  373. build/
  374. # Local configuration file (sdk path, etc)
  375. local.properties
  376. # Proguard folder generated by Eclipse
  377. proguard/
  378. # Log Files
  379. *.log
  380. # Android Studio Navigation editor temp files
  381. .navigation/
  382. # Android Studio captures folder
  383. captures/
  384. # IntelliJ
  385. *.iml
  386. .idea/workspace.xml
  387. .idea/tasks.xml
  388. .idea/gradle.xml
  389. .idea/assetWizardSettings.xml
  390. .idea/dictionaries
  391. .idea/libraries
  392. .idea/caches
  393. # Keystore files
  394. # Uncomment the following line if you do not want to check your keystore files in.
  395. #*.jks
  396. # External native build folder generated in Android Studio 2.2 and later
  397. .externalNativeBuild
  398. # Google Services (e.g. APIs or Firebase)
  399. google-services.json
  400. # Freeline
  401. freeline.py
  402. freeline/
  403. freeline_project_description.json
  404. # fastlane
  405. fastlane/report.xml
  406. fastlane/Preview.html
  407. fastlane/screenshots
  408. fastlane/test_output
  409. fastlane/readme.md
  410. ### TortoiseGit template
  411. # Project-level settings
  412. /.tgitconfig
  413. ### macOS template
  414. # General
  415. .DS_Store
  416. .AppleDouble
  417. .LSOverride
  418. # Icon must end with two \r
  419. Icon
  420. # Thumbnails
  421. ._*
  422. # Files that might appear in the root of a volume
  423. .DocumentRevisions-V100
  424. .fseventsd
  425. .Spotlight-V100
  426. .TemporaryItems
  427. .Trashes
  428. .VolumeIcon.icns
  429. .com.apple.timemachine.donotpresent
  430. # Directories potentially created on remote AFP share
  431. .AppleDB
  432. .AppleDesktop
  433. Network Trash Folder
  434. Temporary Items
  435. .apdisk
  436. ### Windows template
  437. # Windows thumbnail cache files
  438. Thumbs.db
  439. ehthumbs.db
  440. ehthumbs_vista.db
  441. # Dump file
  442. *.stackdump
  443. # Folder config file
  444. [Dd]esktop.ini
  445. # Recycle Bin used on file shares
  446. $RECYCLE.BIN/
  447. # Windows Installer files
  448. *.cab
  449. *.msi
  450. *.msix
  451. *.msm
  452. *.msp
  453. # Windows shortcuts
  454. *.lnk
  455. ### SVN template
  456. .svn/
  457. ### Eclipse template
  458. .metadata
  459. bin/
  460. tmp/
  461. *.tmp
  462. *.bak
  463. *.swp
  464. *~.nib
  465. local.properties
  466. .settings/
  467. .loadpath
  468. .recommenders
  469. # External tool builders
  470. .externalToolBuilders/
  471. # Locally stored "Eclipse launch configurations"
  472. *.launch
  473. # PyDev specific (Python IDE for Eclipse)
  474. *.pydevproject
  475. # CDT-specific (C/C++ Development Tooling)
  476. .cproject
  477. # CDT- autotools
  478. .autotools
  479. # Java annotation processor (APT)
  480. .factorypath
  481. # PDT-specific (PHP Development Tools)
  482. .buildpath
  483. # sbteclipse plugin
  484. .target
  485. # Tern plugin
  486. .tern-project
  487. # TeXlipse plugin
  488. .texlipse
  489. # STS (Spring Tool Suite)
  490. .springBeans
  491. # Code Recommenders
  492. .recommenders/
  493. # Scala IDE specific (Scala & Java development for Eclipse)
  494. .cache-main
  495. .scala_dependencies
  496. .worksheet
  497. ### JetBrains template
  498. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  499. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  500. # User-specific stuff
  501. .idea/**/workspace.xml
  502. .idea/**/tasks.xml
  503. .idea/**/dictionaries
  504. .idea/**/shelf
  505. # Sensitive or high-churn files
  506. .idea/**/dataSources/
  507. .idea/**/dataSources.ids
  508. .idea/**/dataSources.local.xml
  509. .idea/**/sqlDataSources.xml
  510. .idea/**/dynamic.xml
  511. .idea/**/uiDesigner.xml
  512. .idea/**/dbnavigator.xml
  513. # Gradle
  514. .idea/**/gradle.xml
  515. .idea/**/libraries
  516. # CMake
  517. cmake-build-debug/
  518. cmake-build-release/
  519. # Mongo Explorer plugin
  520. .idea/**/mongoSettings.xml
  521. # File-based project format
  522. *.iws
  523. # IntelliJ
  524. out/
  525. # mpeltonen/sbt-idea plugin
  526. .idea_modules/
  527. # JIRA plugin
  528. atlassian-ide-plugin.xml
  529. # Cursive Clojure plugin
  530. .idea/replstate.xml
  531. # Crashlytics plugin (for Android Studio and IntelliJ)
  532. com_crashlytics_export_strings.xml
  533. crashlytics.properties
  534. crashlytics-build.properties
  535. fabric.properties
  536. # Editor-based Rest Client
  537. .idea/httpRequests
  538. /platform-rest/target/
  539. /platform-dao/target/
  540. /platform-service/target/
  541. /platform-activiti/target/
  542. /platform-common/target/
  543. /.idea/