Skip to content

Instantly share code, notes, and snippets.

@marmyr

marmyr/Makefile Secret

Last active February 3, 2021 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marmyr/d513c563635e2dd29f22ef4746ea1260 to your computer and use it in GitHub Desktop.
Save marmyr/d513c563635e2dd29f22ef4746ea1260 to your computer and use it in GitHub Desktop.
.PHONY: build clean deploy
build:
rm -f bin/*
env GOOS=linux go build -ldflags="-s -w" -o bin/aws endpoints/aws/aws.go
clean:
rm -rf ./bin
deploy: clean build
sls deploy --verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment