This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
myappziugv/cli-config.yml

52 lines
2.1 KiB
YAML

# The container name used for the run container
container-name-run : "myappziugv-go-run"
# The container name used for the tools container
container-name-tools : "myappziugv-go-tools"
# The project root on the host for the run container to mount to container-path-run
host-path-run : "."
# The project root on the host for the tools container to mount to container-path-tools
host-path-tools : "."
# The project root in the run container to mount to host-path-run
container-path-run : "/go/src/myappziugv; :"
# The project root in the tools container that will be mounted to host-path-tools
container-path-tools : "/go/src/myappziugv; :"
# The port mappings between the host and the container in the form [host:container]
container-port-map : "8080:8080"
# The port mappings between the host and the container for the debug port in the form [host:container]
container-port-map-debug : "8181:8181"
# The name for the dockerfile for the run container
dockerfile-run : "Dockerfile"
# The name for the dockerfile for the tools container
dockerfile-tools : "Dockerfile-tools"
# The name of image to create from dockerfile-run
image-name-run : "myappziugv-go-run"
# The name of image to create from dockerfile-tools
image-name-tools : "myappziugv-go-tools"
# The command to build the code and docker image for RUN
build-cmd-run : "go build"
# The command to execute tests for the code in the tools container
test-cmd : "go test ./..."
# The command to build the code and docker image for DEBUG
build-cmd-debug : "go build"
# The command to run the code in the run container
run-cmd : ""
# The command to execute debug of the code in the tools container
debug-cmd : "dlv debug --headless --listen=0.0.0.0:8181"
# The command to stop the code
stop-cmd : ""
# The relative path to the helm chart used for Kubernetes deployment
chart-path : "chart/myappziugv"
# The IBM version of this configuration
version : "0.0.3"
ibm-generated-id : "0102d32e-801e-4675-9a8e-3239ae79eccb"
ibm-cloud-app-id : "942a745a-b570-4331-a922-3447b9b1fbd4"
credentials-filepath : "localdev-config.json, server/localdev-config.json"