Skip to content

Commit 7a80e43

Browse files
committed
Merge remote-tracking branch 'origin/main' into configure-caddy-container
2 parents 947dd3a + 215c703 commit 7a80e43

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+3759
-1623
lines changed

.github/workflows/biothings_annotator_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1616
steps:
1717
- name: Checkout biothings_annotator source
1818
uses: actions/checkout@v3

.gitignore

Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,151 @@ cython_debug/
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
#.idea/
161+
162+
163+
# Node configuration
164+
# Logs
165+
logs
166+
*.log
167+
npm-debug.log*
168+
yarn-debug.log*
169+
yarn-error.log*
170+
lerna-debug.log*
171+
172+
# Diagnostic reports (https://nodejs.org/api/report.html)
173+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
174+
175+
# Runtime data
176+
pids
177+
*.pid
178+
*.seed
179+
*.pid.lock
180+
181+
# Directory for instrumented libs generated by jscoverage/JSCover
182+
lib-cov
183+
184+
# Coverage directory used by tools like istanbul
185+
coverage
186+
*.lcov
187+
188+
# nyc test coverage
189+
.nyc_output
190+
191+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
192+
.grunt
193+
194+
# Bower dependency directory (https://bower.io/)
195+
bower_components
196+
197+
# node-waf configuration
198+
.lock-wscript
199+
200+
# Compiled binary addons (https://nodejs.org/api/addons.html)
201+
build/Release
202+
203+
# Dependency directories
204+
node_modules/
205+
jspm_packages/
206+
207+
# Snowpack dependency directory (https://snowpack.dev/)
208+
web_modules/
209+
210+
# TypeScript cache
211+
*.tsbuildinfo
212+
213+
# Optional npm cache directory
214+
.npm
215+
216+
# Optional eslint cache
217+
.eslintcache
218+
219+
# Optional stylelint cache
220+
.stylelintcache
221+
222+
# Optional REPL history
223+
.node_repl_history
224+
225+
# Output of 'npm pack'
226+
*.tgz
227+
228+
# Yarn Integrity file
229+
.yarn-integrity
230+
231+
# dotenv environment variable files
232+
.env
233+
.env.*
234+
!.env.example
235+
236+
# parcel-bundler cache (https://parceljs.org/)
237+
.cache
238+
.parcel-cache
239+
240+
# Next.js build output
241+
.next
242+
out
243+
244+
# Nuxt.js build / generate output
245+
.nuxt
246+
dist
247+
.output
248+
249+
# Gatsby files
250+
.cache/
251+
# Comment in the public line in if your project uses Gatsby and not Next.js
252+
# https://nextjs.org/blog/next-9-1#public-directory-support
253+
# public
254+
255+
# vuepress build output
256+
.vuepress/dist
257+
258+
# vuepress v2.x temp and cache directory
259+
.temp
260+
.cache
261+
262+
# Sveltekit cache directory
263+
.svelte-kit/
264+
265+
# vitepress build output
266+
**/.vitepress/dist
267+
268+
# vitepress cache directory
269+
**/.vitepress/cache
270+
271+
# Docusaurus cache and generated files
272+
.docusaurus
273+
274+
# Serverless directories
275+
.serverless/
276+
277+
# FuseBox cache
278+
.fusebox/
279+
280+
# DynamoDB Local files
281+
.dynamodb/
282+
283+
# Firebase cache directory
284+
.firebase/
285+
286+
# TernJS port file
287+
.tern-port
288+
289+
# Stores VSCode versions used for testing VSCode extensions
290+
.vscode-test
291+
292+
# yarn v3
293+
.pnp.*
294+
.yarn/*
295+
!.yarn/patches
296+
!.yarn/plugins
297+
!.yarn/releases
298+
!.yarn/sdks
299+
!.yarn/versions
300+
301+
# Vite files
302+
vite.config.js.timestamp-*
303+
vite.config.ts.timestamp-*
304+
.vite/
305+
306+
307+
# local webapp
308+
biothings_annotator/webapp/*.sqlite3

0 commit comments

Comments
 (0)