This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
spadinastan/Taskfile.internal.yml

19 lines
380 B
YAML
Raw Normal View History

version: '3'
output: prefixed
internal: true
tasks:
build-images:
prefix: "build image: {{ .SERVICE }}"
dir: services/{{ .SERVICE }}
cmd: . ./build.sh
start-service:
prefix: "start: {{ .SERVICE }}"
dir: services/{{ .SERVICE }}
cmd: . ./start.sh
stop-service:
prefix: "stop: {{ .SERVICE }}"
dir: services/{{ .SERVICE }}
cmd: . ./stop.sh