bunker/server/localdevzone/Taskfile.yml
Stanislav N. aka pztrn 2c13e3f380
Some checks failed
Linting and tests / Linting (push) Failing after 37s
Basic server app with WS connection.
2025-09-15 09:33:25 +05:00

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