Some checks failed
Linting and tests / Linting (push) Failing after 37s
24 lines
437 B
YAML
24 lines
437 B
YAML
---
|
|
version: "3"
|
|
|
|
includes:
|
|
bunkerd: ./bunkerd
|
|
common: ./common
|
|
postgresql: ./postgresql
|
|
|
|
tasks:
|
|
down:
|
|
desc: "Removes development environment."
|
|
cmds:
|
|
- task: bunkerd:down
|
|
- task: bunkerd:down-debug
|
|
- task: postgresql:down
|
|
- task: common:network-down
|
|
|
|
up:
|
|
desc: "Creates development environment."
|
|
cmds:
|
|
- task: common:network-up
|
|
- task: postgresql:up
|
|
- task: bunkerd:up
|