17 lines
258 B
YAML
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
|
|
... |