You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -64,19 +64,19 @@ NOTE: The Docker Container uses the NDC Open API Lambda Connector CLI internally
64
64
65
65
```
66
66
# get command documentation/help
67
-
docker run --rm ghcr.io/hasura/ndc-open-api-lambda:v0.1.0 update -h
67
+
docker run --rm ghcr.io/hasura/ndc-open-api-lambda:v0.1.1 update -h
68
68
69
69
# run the code generation (using env vars)
70
-
docker run --rm -v ./:/etc/connector/ -e NDC_OAS_DOCUMENT_URI=${url to open API document} ghcr.io/hasura/ndc-open-api-lambda:v0.1.0 update
70
+
docker run --rm -v ./:/etc/connector/ -e NDC_OAS_DOCUMENT_URI=${url to open API document} ghcr.io/hasura/ndc-open-api-lambda:v0.1.1 update
71
71
72
72
# run the code generation (using CLI flags)
73
-
docker run --rm -v ./:/etc/connector/ ghcr.io/hasura/ndc-open-api-lambda:v0.1.0 update --open-api ${url to open API document}
73
+
docker run --rm -v ./:/etc/connector/ ghcr.io/hasura/ndc-open-api-lambda:v0.1.1 update --open-api ${url to open API document}
74
74
75
75
# with baseUrl (using env vars)
76
-
docker run --rm -v ./:/etc/connector/ -e NDC_OAS_DOCUMENT_URI=${url to open API document} -e NDC_OAS_BASE_URL=http://demoapi.com/ ghcr.io/hasura/ndc-open-api-lambda:v0.1.0 update
76
+
docker run --rm -v ./:/etc/connector/ -e NDC_OAS_DOCUMENT_URI=${url to open API document} -e NDC_OAS_BASE_URL=http://demoapi.com/ ghcr.io/hasura/ndc-open-api-lambda:v0.1.1 update
77
77
78
78
# with baseUrl (using CLI flags)
79
-
docker run --rm -v ./:/etc/connector/ ghcr.io/hasura/ndc-open-api-lambda:v0.1.0 update --open-api ${url to open API document} --base-url http://demoapi.com/
79
+
docker run --rm -v ./:/etc/connector/ ghcr.io/hasura/ndc-open-api-lambda:v0.1.1 update --open-api ${url to open API document} --base-url http://demoapi.com/
Copy file name to clipboardexpand all lines: release.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,11 @@ The NDC Open API Lambda Connector uses GitHub Releases for release management.
11
11
5. Build a cross platform Docker Image using the command `docker buildx build --platform=linux/amd64,linux/arm64 -t ghcr.io/hasura/ndc-open-api-lambda:${git-tag} .`
12
12
6. Publish a Docker Image to GHCR with the name `ghcr.io/hasura/ndc-open-api-lambda` and the version tagged with the Git Tag using `docker push ${image:tag}`. More on [GHRC](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry)
13
13
7. Update [Changelog](./changelog.md)
14
-
8. Create .tgz file of `connector-definition` using the commands (MacOS)
14
+
8. Create .tgz file of `connector-definition` using the commands (MacOS)
15
+
15
16
```
16
17
$ cd ndc-open-api-lambda/connector-definition
17
18
$ tar -czf connector-definition.tgz .hasura-connector
18
19
```
20
+
19
21
9. Create a GitHub Release and add the .tgz file as an asset
0 commit comments