Files
cosmoserver/tasks/main.yaml

24 lines
420 B
YAML

---
# refresh when refresh
#- name: Quick refresh
# when: refresh_special | bool
# set_fact:
# quick_refresh: true
# initializa environment
- name: Initialize Environment
when: not quick_refresh | bool
include_tasks: init.yaml
# set up API
- name: Build API
# when: false
include_tasks: api.yaml
# set up web stack
- name: Build Web Dashboard
when: not disable_local_api
include_tasks: web.yaml
...