.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. !*
  2. .directory
  3. #################
  4. ## Eclipse
  5. #################
  6. *.pydevproject
  7. .project
  8. .metadata
  9. bin/
  10. tmp/
  11. *.tmp
  12. *.bak
  13. *.swp
  14. *~.nib
  15. project.fragment.lock.json
  16. project.lock.json
  17. local.properties
  18. .classpath
  19. .settings/
  20. .loadpath
  21. # External tool builders
  22. .externalToolBuilders/
  23. # Locally stored "Eclipse launch configurations"
  24. *.launch
  25. # CDT-specific
  26. .cproject
  27. # PDT-specific
  28. .buildpath
  29. #################
  30. ## Media Browser
  31. #################
  32. ProgramData*/
  33. CorePlugins*/
  34. ProgramData-Server*/
  35. ProgramData-UI*/
  36. #################
  37. ## Visual Studio
  38. #################
  39. ## Ignore Visual Studio temporary files, build results, and
  40. ## files generated by popular Visual Studio add-ons.
  41. # User-specific files
  42. *.suo
  43. *.user
  44. *.sln.docstates
  45. # Build results
  46. [Dd]ebug/
  47. [Rr]elease/
  48. build/
  49. [Bb]in/
  50. [Oo]bj/
  51. # MSTest test Results
  52. [Tt]est[Rr]esult*/
  53. [Bb]uild[Ll]og.*
  54. *_i.c
  55. *_p.c
  56. *.ilk
  57. *.meta
  58. *.obj
  59. *.pch
  60. *.pdb
  61. *.pgc
  62. *.pgd
  63. *.rsp
  64. *.sbr
  65. *.tlb
  66. *.tli
  67. *.tlh
  68. *.tmp
  69. *.tmp_proj
  70. *.log
  71. *.vspscc
  72. *.vssscc
  73. .builds
  74. *.pidb
  75. *.log
  76. *.scc
  77. *.scc
  78. *.psess
  79. *.vsp
  80. *.vspx
  81. *.orig
  82. *.rej
  83. *.sdf
  84. *.opensdf
  85. *.ipch
  86. # Visual C++ cache files
  87. ipch/
  88. *.aps
  89. *.ncb
  90. *.opensdf
  91. *.sdf
  92. *.cachefile
  93. # Visual Studio profiler
  94. *.psess
  95. *.vsp
  96. *.vspx
  97. # Guidance Automation Toolkit
  98. *.gpState
  99. # ReSharper is a .NET coding add-in
  100. _ReSharper*/
  101. *.[Rr]e[Ss]harper
  102. # TeamCity is a build add-in
  103. _TeamCity*
  104. # DotCover is a Code Coverage Tool
  105. *.dotCover
  106. # NCrunch
  107. *.ncrunch*
  108. .*crunch*.local.xml
  109. # Installshield output folder
  110. [Ee]xpress/
  111. # DocProject is a documentation generator add-in
  112. DocProject/buildhelp/
  113. DocProject/Help/*.HxT
  114. DocProject/Help/*.HxC
  115. DocProject/Help/*.hhc
  116. DocProject/Help/*.hhk
  117. DocProject/Help/*.hhp
  118. DocProject/Help/Html2
  119. DocProject/Help/html
  120. # Click-Once directory
  121. publish/
  122. # Publish Web Output
  123. *.Publish.xml
  124. *.pubxml
  125. # NuGet Packages Directory
  126. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  127. # packages/
  128. dlls/
  129. dllssigned/
  130. # Windows Azure Build Output
  131. csx
  132. *.build.csdef
  133. # Windows Store app package directory
  134. AppPackages/
  135. # Others
  136. sql/
  137. *.Cache
  138. ClientBin/
  139. [Ss]tyle[Cc]op.*
  140. ~$*
  141. *~
  142. *.dbmdl
  143. *.[Pp]ublish.xml
  144. *.publishsettings
  145. # RIA/Silverlight projects
  146. Generated_Code/
  147. # Backup & report files from converting an old project file to a newer
  148. # Visual Studio version. Backup files are not needed, because we have git ;-)
  149. _UpgradeReport_Files/
  150. Backup*/
  151. UpgradeLog*.XML
  152. UpgradeLog*.htm
  153. # SQL Server files
  154. App_Data/*.mdf
  155. App_Data/*.ldf
  156. #############
  157. ## Windows detritus
  158. #############
  159. # Windows image file caches
  160. Thumbs.db
  161. ehthumbs.db
  162. # Folder config file
  163. Desktop.ini
  164. # Recycle Bin used on file shares
  165. $RECYCLE.BIN/
  166. # Mac crap
  167. .DS_Store
  168. #############
  169. ## Python
  170. #############
  171. *.py[co]
  172. # Packages
  173. *.egg
  174. *.egg-info
  175. build/
  176. eggs/
  177. parts/
  178. var/
  179. sdist/
  180. develop-eggs/
  181. .installed.cfg
  182. # Installer logs
  183. pip-log.txt
  184. # Unit test / coverage reports
  185. .coverage
  186. .tox
  187. #Translations
  188. *.mo
  189. #Mr Developer
  190. .mr.developer.cfg
  191. /.vs
  192. ##########
  193. # Rider
  194. ##########
  195. .idea/
  196. #########################
  197. # Debian build artifacts
  198. #########################
  199. debian/.debhelper/
  200. debian/*.debhelper
  201. debian/debhelper-build-stamp
  202. debian/files
  203. debian/jellyfin.substvars
  204. debian/jellyfin/
  205. # Don't ignore the debian/bin folder
  206. !debian/bin/