ENV=stg

build: web app cdksynth

buildcdk:
	npm install && npm run build

cdksynth: buildcdk
	npx cdk -v synth support-portal-$(ENV)

deploy: build
	npx cdk -v deploy support-portal-$(ENV)

web:
	cd ../ui && yarn build

app:
	cd .. && make build
