We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7e811b commit 50fbdd7Copy full SHA for 50fbdd7
Makefile
@@ -63,7 +63,7 @@ logs:
63
setup-challenge:
64
yarn install
65
make build
66
- IS_LOCAL_DEV=true make bootstrap
+ make bootstrap
67
IS_LOCAL_DEV=true make deploy
68
make prepare-frontend-local
69
make hotreload
packages/infra/cdk/notes-api.ts
@@ -21,7 +21,7 @@ export class NotesApi extends Construct {
21
22
const { table, grantActions } = props;
23
24
- const isLocalDev = process.env.IS_LOCAL_DEV;
+ const isLocalDev = ["true", true].includes(process.env.IS_LOCAL_DEV);
25
26
const codeConfig = isLocalDev
27
? lambda.Code.fromBucket(
0 commit comments