23 lines
421 B
YAML
23 lines
421 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
|
|
include_tasks: api.yaml
|
|
|
|
# set up web stack
|
|
- name: Build Web Dashboard
|
|
when: not disable_local_dashboard | bool
|
|
include_tasks: docker.yaml
|
|
|
|
... |