File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848 docker pull localstack/localstack-pro &
4949 docker pull public.ecr.aws/lambda/python:3.8 &
5050
51- # install latest CLI packages (dev releases)
52- pip install --upgrade --pre localstack localstack-ext
53-
54- # TODO remove
55- mkdir ~/.localstack; echo '{"token":"test"}' > ~/.localstack/auth.json
51+ # install latest CLI packages
52+ pip install --upgrade localstack localstack-ext
5653
5754 # install dependencies
5855 sudo apt-get update
6360 (
6461 make install
6562 . .venv/bin/activate
66- pip install --upgrade --pre localstack localstack-ext
6763 make build
6864 make enable
6965 )
Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ FRONTEND_FOLDER = aws_proxy/frontend
88COREPACK_EXISTS := $(shell command -v corepack)
99YARN_EXISTS := $(shell command -v yarn)
1010
11- venv : $(VENV_ACTIVATE )
12-
1311usage : # # Show this help
1412 @grep -Fh " ##" $(MAKEFILE_LIST ) | grep -Fv fgrep | sed -e ' s/:.*##\s*/##/g' | awk -F' ##' ' { printf "%-25s %s\n", $$1, $$2 }'
1513
@@ -52,7 +50,7 @@ check-frontend-deps:
5250 npm install -g corepack; \
5351 fi
5452
55- install-frontend : venv check-frontend-deps # # Install dependencies of the frontend
53+ install-frontend : check-frontend-deps # # Install dependencies of the frontend
5654 cd $(FRONTEND_FOLDER ) && yarn install
5755
5856build-frontend : # Build the React app
You can’t perform that action at this time.
0 commit comments