Skip to content

Commit

Permalink
feature: v2 api with Course and Resources
Browse files Browse the repository at this point in the history
Add initial v2 api with Course and Resources apis, including their
OpenAPI descriptions.

Add support for handling v1 and v2 deltas separately within the
server.

Add support for Resource Provider plugins.
  • Loading branch information
tkurki committed Feb 18, 2023
1 parent 92cf6d7 commit 8054be4
Show file tree
Hide file tree
Showing 74 changed files with 11,552 additions and 92 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Build Docker development container
on:
push:
branches:
- master
- 'build-docker'
- master
- "build-docker"
tags:
- '*'
- '!v*'
Expand Down Expand Up @@ -35,6 +35,8 @@ jobs:
npm pack && mv *.tgz ../../
cd ../streams
npm pack && mv *.tgz ../../
cd ../resources-provider-plugin
npm pack && mv *.tgz ../../
cd ../..
jq '.workspaces=[]' package.json > _package.json && mv _package.json package.json
npm i --save *.tgz
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
node_modules
!test/plugin-test-config/node_modules/

*.tsbuildinfo

lib/

.DS_Store
Expand Down
Loading

0 comments on commit 8054be4

Please sign in to comment.