#set the default aws profile to use IF one is not already set
AWS_PROFILE ?= twitch-safety-staging

.PHONY: all

dep: 
	dep ensure -vendor-only

test: 
	AWS_PROFILE=$(AWS_PROFILE) ENVIRONMENT=staging go test ./...

vtest: 
	AWS_PROFILE=$(AWS_PROFILE) ENVIRONMENT=staging go test ./... -v

vet:
	go vet -gcflags="-e" ./...