ENV=stg

build: web app cdksynth

buildcdk:
	npm install && npm run build

cdksynth: buildcdk
	npx cdk -v synth parsnip-ui-$(ENV)

deploy: build
	npx cdk -v deploy parsnip-ui-$(ENV)

web:
	cd ../ui && yarn install && npm run-script build

app:
	cd .. && make build
