Skip to content

Commit

Permalink
Merge branch 'pydantic-v2-migration'
Browse files Browse the repository at this point in the history
  • Loading branch information
bkis committed Aug 21, 2023
2 parents 627493b + be4d2ee commit 0f21ed3
Show file tree
Hide file tree
Showing 31 changed files with 2,541 additions and 1,926 deletions.
12 changes: 11 additions & 1 deletion Tekst-API/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ tasks:
- poetry run python3 -c "from tekst import __version__ as v; print(v, end='')"
silent: true

install:
desc: Install dependencies
cmds:
- poetry install

update:
desc: Update dependencies
cmds:
- poetry update

fix:
desc: Run ruff and black to format code base and attempt to fix linting errors
cmds:
Expand Down Expand Up @@ -62,10 +72,10 @@ tasks:
dev:
desc: Run dev services stack and dev server, clean up afterwards
cmds:
- defer: {task: dev-stack-down}
- task: dev-stack-up
- task: print-dev-uris
- task: run-dev
- defer: {task: dev-stack-down}

schema:
desc: Export (development) OpenAPI schema to file openapi.json
Expand Down
Loading

0 comments on commit 0f21ed3

Please sign in to comment.