From 6a6e6ff50658aee0be2400fce95903a722a4d434 Mon Sep 17 00:00:00 2001 From: Dennis Chen <41879777+chennisden@users.noreply.github.com> Date: Fri, 9 Aug 2024 20:10:10 -0700 Subject: [PATCH] Add AWS_ENDPOINT_URL_DYNAMODB to docs (#280) --- CONTRIBUTING.md | 1 + env.sh.example | 1 + 2 files changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index efd6edc2..f86b3cf6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -112,6 +112,7 @@ export AWS_DEFAULT_REGION='us-east-1' export AWS_ACCESS_KEY_ID=test export AWS_SECRET_ACCESS_KEY=test export AWS_ENDPOINT_URL_S3='http://127.0.0.1:4566' +export AWS_ENDPOINT_DYNAMODB='http://127.0.0.1:4566' # For letting the frontend know the backend URL. export VITE_APP_BACKEND_URL='http://127.0.0.1:8080' diff --git a/env.sh.example b/env.sh.example index 0f326f1e..204b7d40 100644 --- a/env.sh.example +++ b/env.sh.example @@ -6,6 +6,7 @@ export AWS_DEFAULT_REGION='us-east-1' export AWS_ACCESS_KEY_ID=test export AWS_SECRET_ACCESS_KEY=test export AWS_ENDPOINT_URL_S3='http://127.0.0.1:4566' +export AWS_ENDPOINT_URL_DYNAMODB='http://127.0.0.1:4566' # For letting the frontend know the backend URL. export VITE_APP_BACKEND_URL='http://127.0.0.1:8080'