Files
cosmoserver/tasks/main.yaml

25 lines
423 B
YAML

---
# new big dashboard test
#- name: MC Vizz
# include_tasks: vizz.yaml
- name: disable
when: false
block:
# initialize environment
- name: Initialize Environment
include_tasks: init.yaml
# set up API
- name: Build API
include_tasks: api.yaml
# set up web stack
- name: Build Web Dashboard
when:
- not disable_local_dashboard | bool
- not update_pipeline | bool
include_tasks: docker.yaml
...