From 30a74c6b1e24a0a55c6ce3d33ff614d649991e7c Mon Sep 17 00:00:00 2001 From: gousse Date: Fri, 2 Dec 2022 12:44:26 +0100 Subject: [PATCH] docs: fix quickstart up.sh (#1158) Added `--insecure-disable-transport-security` flag to all client commands. --- contrib/cat-videos-example/up.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/cat-videos-example/up.sh b/contrib/cat-videos-example/up.sh index 28f3cfd03..da58e214f 100755 --- a/contrib/cat-videos-example/up.sh +++ b/contrib/cat-videos-example/up.sh @@ -11,16 +11,16 @@ trap teardown EXIT export KETO_WRITE_REMOTE="127.0.0.1:4467" -keto relation-tuple create contrib/cat-videos-example/relation-tuples +keto relation-tuple create contrib/cat-videos-example/relation-tuples --insecure-disable-transport-security echo " Created all relationships. Now you can use the Keto CLI client to play around: export KETO_READ_REMOTE=\"127.0.0.1:4466\" -keto relation-tuple get videos -keto check \"*\" view videos /cats/1.mp4 -keto expand view videos /cats/2.mp4 +keto relation-tuple get --insecure-disable-transport-security +keto check \"*\" view videos /cats/1.mp4 --insecure-disable-transport-security +keto expand view videos /cats/2.mp4 --insecure-disable-transport-security " # sleep 10h; has to be defined like this because OSX does not know units https://www.unix.com/man-page/osx/1/sleep/