7 lines
145 B
Makefile
7 lines
145 B
Makefile
|
build:
|
||
|
GOOS=linux CGO_ENABLED=0 GOARCH=amd64 go build -ldflags="-w -s" -o ./webapp
|
||
|
|
||
|
init-dev:
|
||
|
docker-compose up -d
|
||
|
sleep 30
|
||
|
go run ./ migrate
|