mirror of
https://github.com/mitchell/lambdarouter.git
synced 2025-06-19 13:55:34 +00:00
11 lines
176 B
Makefile
11 lines
176 B
Makefile
.PHONY: all build clean deploy test
|
|
|
|
build:
|
|
env GOOS=linux go build -ldflags="-s -w" -o ./bin/hello ./main.go
|
|
|
|
clean:
|
|
rm -rf ./bin
|
|
|
|
deploy: clean build
|
|
sls deploy --verbose
|