Files
cosmoserver/tasks/main.yaml

17 lines
288 B
YAML

---
# initializa environment
- name: Initialize Environment
when: not quick_refresh | bool
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_api
include_tasks: web.yaml
...