Files
cosmoserver/tasks/main.yaml
2026-03-29 09:39:43 -07:00

22 lines
383 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
#- name: Purge Old Containers
# when: not quick_refresh | bool
# include_tasks: purge.yaml
...