Files
cosmoserver/tasks/main.yaml
2026-03-09 16:32:43 -07:00

17 lines
258 B
YAML

---
# initializa environment
# set up API
# set up web stack
- name: Initialize Environment
when: not quick_refresh | bool
include_tasks: init.yaml
- name: Build API
include_tasks: api.yaml
- name: Build Web Dashboard
include_tasks: web.yaml
...