.gitignore 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. ## Ignore nodejs things
  2. [Nn]ode_modules/
  3. [Tt]yping/
  4. [Ii]mages-spare/
  5. [Dd]aemon/
  6. [Aa]gent/
  7. [Aa]gents/modules_meshcmd_min/
  8. [Aa]gents/modules_meshcore_min/
  9. [Aa]gents/meshcmd.min.js
  10. [Aa]gents/meshcore.min.js
  11. [Pp]ublic/translations/
  12. [Vv]iews/translations/
  13. [Ee]mails/translations/
  14. [Pp]ublic/*-min.htm
  15. [Vv]iews/*-min.handlebars
  16. meshcentral.db
  17. meshcentral.db.json
  18. mesherrors.txt
  19. bob.json
  20. .greenlockrc
  21. venv
  22. ## Ignore Visual Studio temporary files, build results, and
  23. ## files generated by popular Visual Studio add-ons.
  24. ##
  25. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  26. # User-specific files
  27. *.suo
  28. *.user
  29. *.userosscache
  30. *.sln.docstates
  31. # User-specific files (MonoDevelop/Xamarin Studio)
  32. *.userprefs
  33. # Build results
  34. [Dd]ebug/
  35. [Dd]ebugPublic/
  36. [Rr]elease/
  37. [Rr]eleases/
  38. x64/
  39. x86/
  40. bld/
  41. [Oo]bj/
  42. [Ll]og/
  43. # Visual Studio 2015 cache/options directory
  44. .vs/
  45. # Uncomment if you have tasks that create the project's static files in wwwroot
  46. #wwwroot/
  47. # MSTest test Results
  48. [Tt]est[Rr]esult*/
  49. [Bb]uild[Ll]og.*
  50. # NUNIT
  51. *.VisualState.xml
  52. TestResult.xml
  53. # Build Results of an ATL Project
  54. [Dd]ebugPS/
  55. [Rr]eleasePS/
  56. dlldata.c
  57. # .NET Core
  58. project.lock.json
  59. project.fragment.lock.json
  60. artifacts/
  61. **/Properties/launchSettings.json
  62. *_i.c
  63. *_p.c
  64. *_i.h
  65. *.ilk
  66. *.meta
  67. *.obj
  68. *.pch
  69. *.pdb
  70. *.pgc
  71. *.pgd
  72. *.rsp
  73. *.sbr
  74. *.tlb
  75. *.tli
  76. *.tlh
  77. *.tmp
  78. *.tmp_proj
  79. *.log
  80. *.vspscc
  81. *.vssscc
  82. .builds
  83. *.pidb
  84. *.svclog
  85. *.scc
  86. # Chutzpah Test files
  87. _Chutzpah*
  88. # Visual C++ cache files
  89. ipch/
  90. *.aps
  91. *.ncb
  92. *.opendb
  93. *.opensdf
  94. *.sdf
  95. *.cachefile
  96. *.VC.db
  97. *.VC.VC.opendb
  98. # Visual Studio profiler
  99. *.psess
  100. *.vsp
  101. *.vspx
  102. *.sap
  103. # TFS 2012 Local Workspace
  104. $tf/
  105. # Guidance Automation Toolkit
  106. *.gpState
  107. # ReSharper is a .NET coding add-in
  108. _ReSharper*/
  109. *.[Rr]e[Ss]harper
  110. *.DotSettings.user
  111. # JustCode is a .NET coding add-in
  112. .JustCode
  113. # TeamCity is a build add-in
  114. _TeamCity*
  115. # DotCover is a Code Coverage Tool
  116. *.dotCover
  117. # Visual Studio code coverage results
  118. *.coverage
  119. *.coveragexml
  120. # NCrunch
  121. _NCrunch_*
  122. .*crunch*.local.xml
  123. nCrunchTemp_*
  124. # MightyMoose
  125. *.mm.*
  126. AutoTest.Net/
  127. # Web workbench (sass)
  128. .sass-cache/
  129. # Installshield output folder
  130. [Ee]xpress/
  131. # DocProject is a documentation generator add-in
  132. DocProject/buildhelp/
  133. DocProject/Help/*.HxT
  134. DocProject/Help/*.HxC
  135. DocProject/Help/*.hhc
  136. DocProject/Help/*.hhk
  137. DocProject/Help/*.hhp
  138. DocProject/Help/Html2
  139. DocProject/Help/html
  140. # Click-Once directory
  141. publish/
  142. # Publish Web Output
  143. *.[Pp]ublish.xml
  144. *.azurePubxml
  145. # TODO: Comment the next line if you want to checkin your web deploy settings
  146. # but database connection strings (with potential passwords) will be unencrypted
  147. *.pubxml
  148. *.publishproj
  149. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  150. # checkin your Azure Web App publish settings, but sensitive information contained
  151. # in these scripts will be unencrypted
  152. PublishScripts/
  153. # NuGet Packages
  154. *.nupkg
  155. # The packages folder can be ignored because of Package Restore
  156. **/packages/*
  157. # except build/, which is used as an MSBuild target.
  158. !**/packages/build/
  159. # Uncomment if necessary however generally it will be regenerated when needed
  160. #!**/packages/repositories.config
  161. # NuGet v3's project.json files produces more ignorable files
  162. *.nuget.props
  163. *.nuget.targets
  164. # Microsoft Azure Build Output
  165. csx/
  166. *.build.csdef
  167. # Microsoft Azure Emulator
  168. ecf/
  169. rcf/
  170. # Windows Store app package directories and files
  171. AppPackages/
  172. BundleArtifacts/
  173. Package.StoreAssociation.xml
  174. _pkginfo.txt
  175. # Visual Studio cache files
  176. # files ending in .cache can be ignored
  177. *.[Cc]ache
  178. # but keep track of directories ending in .cache
  179. !*.[Cc]ache/
  180. # Others
  181. ClientBin/
  182. ~$*
  183. *~
  184. *.dbmdl
  185. *.dbproj.schemaview
  186. *.jfm
  187. *.pfx
  188. *.publishsettings
  189. orleans.codegen.cs
  190. # Since there are multiple workflows, uncomment next line to ignore bower_components
  191. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  192. #bower_components/
  193. # RIA/Silverlight projects
  194. Generated_Code/
  195. # Backup & report files from converting an old project file
  196. # to a newer Visual Studio version. Backup files are not needed,
  197. # because we have git ;-)
  198. _UpgradeReport_Files/
  199. Backup*/
  200. UpgradeLog*.XML
  201. UpgradeLog*.htm
  202. # SQL Server files
  203. *.mdf
  204. *.ldf
  205. *.ndf
  206. # Business Intelligence projects
  207. *.rdl.data
  208. *.bim.layout
  209. *.bim_*.settings
  210. # Microsoft Fakes
  211. FakesAssemblies/
  212. # GhostDoc plugin setting file
  213. *.GhostDoc.xml
  214. # Node.js Tools for Visual Studio
  215. .ntvs_analysis.dat
  216. node_modules/
  217. # Typescript v1 declaration files
  218. typings/
  219. # Visual Studio 6 build log
  220. *.plg
  221. # Visual Studio 6 workspace options file
  222. *.opt
  223. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  224. *.vbw
  225. # Visual Studio LightSwitch build output
  226. **/*.HTMLClient/GeneratedArtifacts
  227. **/*.DesktopClient/GeneratedArtifacts
  228. **/*.DesktopClient/ModelManifest.xml
  229. **/*.Server/GeneratedArtifacts
  230. **/*.Server/ModelManifest.xml
  231. _Pvt_Extensions
  232. # Paket dependency manager
  233. .paket/paket.exe
  234. paket-files/
  235. # FAKE - F# Make
  236. .fake/
  237. # JetBrains Rider
  238. .idea/
  239. *.sln.iml
  240. # CodeRush
  241. .cr/
  242. # Python Tools for Visual Studio (PTVS)
  243. __pycache__/
  244. *.pyc
  245. # Cake - Uncomment if you are using it
  246. # tools/**
  247. # !tools/packages.config
  248. # Telerik's JustMock configuration file
  249. *.jmconfig
  250. # BizTalk build output
  251. *.btp.cs
  252. *.btm.cs
  253. *.odx.cs
  254. *.xsd.cs
  255. .DS_Store
  256. # When running mkdocs locally as dev
  257. docs/__pycache__/
  258. docs/env/
  259. docker-compose.yaml