This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
golang-rest-example/justfile

20 lines
340 B
Makefile

export GO_VERSION := "1.21"
_default:
@just --list
# Run the app in development mode
run:
docker compose up --build app
# Generate OpenAPI files
gen:
docker compose run --rm app \
go generate ./...
# Build production image
build:
docker build \
--build-arg GO_VERSION=$(GO_VERSION) \
-t golang-rest-example \
.