forked from aws-samples/aws-sdk-js-notes-app
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathMakefile
More file actions
72 lines (55 loc) · 1.8 KB
/
Makefile
File metadata and controls
72 lines (55 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
export AWS_ACCESS_KEY_ID ?= test
export AWS_SECRET_ACCESS_KEY ?= test
export AWS_DEFAULT_REGION=us-east-1
SHELL := /bin/bash
## Show this help
usage:
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
## Install dependencies
install:
@which localstack || pip install localstack
@which awslocal || pip install awscli-local
# Deploy the infrastructure
build:
yarn && yarn build:backend;
hotreload:
yarn && yarn hotreload:backend;
bootstrap:
yarn cdklocal bootstrap;
## Deploy the infrastructure
deploy:
yarn cdklocal deploy;
## Start LocalStack in detached mode
start:
@test -n "${LOCALSTACK_AUTH_TOKEN}" || (echo "LOCALSTACK_AUTH_TOKEN is not set. Find your token at https://app.localstack.cloud/workspace/auth-token"; exit 1)
@LOCALSTACK_AUTH_TOKEN=$(LOCALSTACK_AUTH_TOKEN) localstack start -d
## export configs for web app
prepare-frontend-local:
yarn prepare:frontend-local
build-frontend:
yarn build:frontend
start-frontend:
yarn start:frontend
bootstrap-frontend:
yarn cdklocal bootstrap --app="node dist/aws-sdk-js-notes-app-frontend.js";
deploy-frontend:
yarn cdklocal deploy --app="node dist/aws-sdk-js-notes-app-frontend.js";
## Stop the Running LocalStack container
stop:
@echo
localstack stop
## Make sure the LocalStack container is up
ready:
@echo Waiting on the LocalStack container...
@localstack wait -t 30 && echo LocalStack is ready to use! || (echo Gave up waiting on LocalStack, exiting. && exit 1)
## Save the logs in a separate file, since the LS container will only contain the logs of the last sample run.
logs:
@localstack logs > logs.txt
setup-challenge:
yarn install
make build
make bootstrap
IS_LOCAL_DEV=true make deploy
make prepare-frontend-local
make hotreload
.PHONY: usage install run start stop ready logs