From 36a6baa8675e51c5bf10e16fe748b74db5fdf629 Mon Sep 17 00:00:00 2001 From: rcemper <31236645+rcemper@users.noreply.github.com> Date: Sun, 9 Oct 2022 13:18:28 +0200 Subject: [PATCH 1/3] command: --check-caps false --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 360e9e7..37fab3b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,6 +5,7 @@ services: context: . dockerfile: Dockerfile restart: always + command: --check-caps false ports: - 1972 - 52773 From d8b1ae49d9bb074dba177af71b5137955434a335 Mon Sep 17 00:00:00 2001 From: rcemper <31236645+rcemper@users.noreply.github.com> Date: Sun, 9 Oct 2022 14:58:08 +0200 Subject: [PATCH 2/3] Adjust %New() to access by GutHub Token --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9834c8e..474e1b4 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ Import into any namespace and compile. ## Usage -First create api object to interact with GitHub API (provide valid GitHub user and pass): +First create api object to interact with GitHub API (provide valid GitHub Token if available): -`Set api = ##class(GitHub.API).%New("user","pass")` +`Set api = ##class(GitHub.API).%New("")` After that you can query some GitHub APIs. For example to get info about all public repos in organization: From f080fc243c16a762ba8a551905731c5f2d76d5c6 Mon Sep 17 00:00:00 2001 From: rcemper <31236645+rcemper@users.noreply.github.com> Date: Sun, 9 Oct 2022 15:00:54 +0200 Subject: [PATCH 3/3] Adjust %New() to access by GitHub Token --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 474e1b4..d0564d0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Import into any namespace and compile. ## Usage -First create api object to interact with GitHub API (provide valid GitHub Token if available): +First create api object to interact with GitHub API (use valid GitHub Token if available): `Set api = ##class(GitHub.API).%New("")`