From c12bab90a81c59e557b73fb244efd8a893259d14 Mon Sep 17 00:00:00 2001 From: Nathan Curtis Date: Thu, 24 Oct 2024 10:36:00 -0700 Subject: [PATCH] Update README.md Added steps to install packages needed for the ApiGateway --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f70eb55..4910a80 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ Repository for the Microservices API backend of the TerraMatch service # Building and starting the apps * Copy `.env.local.sample` to `.env` * The ApiGateway does not hot-reload and needs to be re-built when there are changes: + * `(cd apps/api-gateway; npm i)` to install packages for the api gateway stack + * `(cd apps/api-gateway/lambda; npm i)` to install packages for the local lambda function that acts as a proxy for local dev only. * `nx build api-gateway` or `nx run-many -t build` (to build all apps) * This will build the local proxy Lambda function and the CDK Stack * Note: The architecture for the local lambda proxy defaults to ARM_64. This will be the fastest options on ARM-based Macs