.gitignore 3.0 KB

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