Newer
Older
schrodinger / .gitignore
  1. build
  2. src/.ipynb_checkpoints
  3. src/static/video
  4. src/static/img
  5.  
  6. # Logs
  7. logs
  8. *.log
  9. npm-debug.log*
  10. yarn-debug.log*
  11. yarn-error.log*
  12. lerna-debug.log*
  13. .pnpm-debug.log*
  14.  
  15. # Diagnostic reports (https://nodejs.org/api/report.html)
  16. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  17.  
  18. # Runtime data
  19. pids
  20. *.pid
  21. *.seed
  22. *.pid.lock
  23.  
  24. # Directory for instrumented libs generated by jscoverage/JSCover
  25. lib-cov
  26.  
  27. # Coverage directory used by tools like istanbul
  28. coverage
  29. *.lcov
  30.  
  31. # nyc test coverage
  32. .nyc_output
  33.  
  34. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  35. .grunt
  36.  
  37. # Bower dependency directory (https://bower.io/)
  38. bower_components
  39.  
  40. # node-waf configuration
  41. .lock-wscript
  42.  
  43. # Compiled binary addons (https://nodejs.org/api/addons.html)
  44. build/Release
  45.  
  46. # Dependency directories
  47. node_modules/
  48. jspm_packages/
  49.  
  50. # Snowpack dependency directory (https://snowpack.dev/)
  51. web_modules/
  52.  
  53. # TypeScript cache
  54. *.tsbuildinfo
  55.  
  56. # Optional npm cache directory
  57. .npm
  58.  
  59. # Optional eslint cache
  60. .eslintcache
  61.  
  62. # Optional stylelint cache
  63. .stylelintcache
  64.  
  65. # Microbundle cache
  66. .rpt2_cache/
  67. .rts2_cache_cjs/
  68. .rts2_cache_es/
  69. .rts2_cache_umd/
  70.  
  71. # Optional REPL history
  72. .node_repl_history
  73.  
  74. # Output of 'npm pack'
  75. *.tgz
  76.  
  77. # Yarn Integrity file
  78. .yarn-integrity
  79.  
  80. # dotenv environment variable files
  81. .env
  82. .env.development.local
  83. .env.test.local
  84. .env.production.local
  85. .env.local
  86.  
  87. # parcel-bundler cache (https://parceljs.org/)
  88. .cache
  89. .parcel-cache
  90.  
  91. # Next.js build output
  92. .next
  93. out
  94.  
  95. # Nuxt.js build / generate output
  96. .nuxt
  97. dist
  98.  
  99. # Gatsby files
  100. .cache/
  101. # Comment in the public line in if your project uses Gatsby and not Next.js
  102. # https://nextjs.org/blog/next-9-1#public-directory-support
  103. # public
  104.  
  105. # vuepress build output
  106. .vuepress/dist
  107.  
  108. # vuepress v2.x temp and cache directory
  109. .temp
  110. .cache
  111.  
  112. # Docusaurus cache and generated files
  113. .docusaurus
  114.  
  115. # Serverless directories
  116. .serverless/
  117.  
  118. # FuseBox cache
  119. .fusebox/
  120.  
  121. # DynamoDB Local files
  122. .dynamodb/
  123.  
  124. # TernJS port file
  125. .tern-port
  126.  
  127. # Stores VSCode versions used for testing VSCode extensions
  128. .vscode-test
  129.  
  130. # yarn v2
  131. .yarn/cache
  132. .yarn/unplugged
  133. .yarn/build-state.yml
  134. .yarn/install-state.gz
  135. .pnp.*
  136. # Logs
  137. logs
  138. *.log
  139. npm-debug.log*
  140. yarn-debug.log*
  141. yarn-error.log*
  142. lerna-debug.log*
  143. .pnpm-debug.log*
  144.  
  145. # Diagnostic reports (https://nodejs.org/api/report.html)
  146. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  147.  
  148. # Runtime data
  149. pids
  150. *.pid
  151. *.seed
  152. *.pid.lock
  153.  
  154. # Directory for instrumented libs generated by jscoverage/JSCover
  155. lib-cov
  156.  
  157. # Coverage directory used by tools like istanbul
  158. coverage
  159. *.lcov
  160.  
  161. # nyc test coverage
  162. .nyc_output
  163.  
  164. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  165. .grunt
  166.  
  167. # Bower dependency directory (https://bower.io/)
  168. bower_components
  169.  
  170. # node-waf configuration
  171. .lock-wscript
  172.  
  173. # Compiled binary addons (https://nodejs.org/api/addons.html)
  174. build/Release
  175.  
  176. # Dependency directories
  177. node_modules/
  178. jspm_packages/
  179.  
  180. # Snowpack dependency directory (https://snowpack.dev/)
  181. web_modules/
  182.  
  183. # TypeScript cache
  184. *.tsbuildinfo
  185.  
  186. # Optional npm cache directory
  187. .npm
  188.  
  189. # Optional eslint cache
  190. .eslintcache
  191.  
  192. # Optional stylelint cache
  193. .stylelintcache
  194.  
  195. # Microbundle cache
  196. .rpt2_cache/
  197. .rts2_cache_cjs/
  198. .rts2_cache_es/
  199. .rts2_cache_umd/
  200.  
  201. # Optional REPL history
  202. .node_repl_history
  203.  
  204. # Output of 'npm pack'
  205. *.tgz
  206.  
  207. # Yarn Integrity file
  208. .yarn-integrity
  209.  
  210. # dotenv environment variable files
  211. .env
  212. .env.development.local
  213. .env.test.local
  214. .env.production.local
  215. .env.local
  216.  
  217. # parcel-bundler cache (https://parceljs.org/)
  218. .cache
  219. .parcel-cache
  220.  
  221. # Next.js build output
  222. .next
  223. out
  224.  
  225. # Nuxt.js build / generate output
  226. .nuxt
  227. dist
  228.  
  229. # Gatsby files
  230. .cache/
  231. # Comment in the public line in if your project uses Gatsby and not Next.js
  232. # https://nextjs.org/blog/next-9-1#public-directory-support
  233. # public
  234.  
  235. # vuepress build output
  236. .vuepress/dist
  237.  
  238. # vuepress v2.x temp and cache directory
  239. .temp
  240. .cache
  241.  
  242. # Docusaurus cache and generated files
  243. .docusaurus
  244.  
  245. # Serverless directories
  246. .serverless/
  247.  
  248. # FuseBox cache
  249. .fusebox/
  250.  
  251. # DynamoDB Local files
  252. .dynamodb/
  253.  
  254. # TernJS port file
  255. .tern-port
  256.  
  257. # Stores VSCode versions used for testing VSCode extensions
  258. .vscode-test
  259.  
  260. # yarn v2
  261. .yarn/cache
  262. .yarn/unplugged
  263. .yarn/build-state.yml
  264. .yarn/install-state.gz
  265. .pnp.*