From 788d7c92c77bd60b732a3a5b4805a768b65f1280 Mon Sep 17 00:00:00 2001 From: Gleb Kanterov Date: Tue, 16 Jun 2020 11:14:18 +0200 Subject: [PATCH 1/2] Update .env.local in README Now when we support S3, use settings compatible with Flyte sandbox Signed-off-by: Hongxin Liang --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 953628e55..2e20f9537 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,11 @@ We don't publish artifacts yet, but you can build examples yourself. Create `.env.local` with: ```bash -FLYTE_PLATFORM_URL=flyte.local:81 -FLYTE_STAGING_LOCATION=gs://yourbucket +FLYTE_PLATFORM_URL=localhost:30081 +FLYTE_AWS_ENDPOINT=http://localhost:30084 +FLYTE_AWS_ACCESS_KEY_ID=minio +FLYTE_AWS_SECRET_ACCESS_KEY=miniostorage +FLYTE_STAGING_LOCATION=s3://flyteorg FLYTE_PLATFORM_INSECURE=True ``` From c934082ccfb494ff5e75d6f41ff0e08902864b79 Mon Sep 17 00:00:00 2001 From: Honnix Date: Thu, 28 Sep 2023 13:33:35 +0200 Subject: [PATCH 2/2] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sören Brunk Signed-off-by: Hongxin Liang --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e20f9537..7317d702b 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ FLYTE_PLATFORM_URL=localhost:30081 FLYTE_AWS_ENDPOINT=http://localhost:30084 FLYTE_AWS_ACCESS_KEY_ID=minio FLYTE_AWS_SECRET_ACCESS_KEY=miniostorage -FLYTE_STAGING_LOCATION=s3://flyteorg +FLYTE_STAGING_LOCATION=s3://my-s3-bucket FLYTE_PLATFORM_INSECURE=True ```