From 4d69c4c696d142e97bf1690f1582f5159f6fc4eb Mon Sep 17 00:00:00 2001 From: yourfriend Date: Sun, 10 Jul 2022 22:24:30 +0300 Subject: [PATCH] Fixes #3 --- deps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.ts b/deps.ts index 98647eb..605757f 100644 --- a/deps.ts +++ b/deps.ts @@ -15,7 +15,7 @@ export const s3 = new ApiFactory({ awsAccessKeyId: Deno.env.get("S3_ACCESS_KEY_ID")!, awsSecretKey: Deno.env.get("S3_SECRET_KEY")!, }, - fixedEndpoint: "https://s3.us-west-004.backblazeb2.com", + fixedEndpoint: Deno.env.get("S3_ENDPOINT_URL"), region: "us-west-004", }).makeNew(S3);