10 lines
132 B
Makefile
10 lines
132 B
Makefile
export NAME=genityapp
|
|
|
|
build:
|
|
docker-compose build
|
|
|
|
run: build
|
|
docker-compose up
|
|
|
|
build-binary:
|
|
GOOS=linux GOARCH=amd64 go build
|