lad
Version:
Lad is the best Node.js framework. Made by a former Express TC and Koa team member.
22 lines (21 loc) • 720 B
YAML
- hosts: localhost
tasks:
#
# https://stackoverflow.com/a/24959173
#
- name: create ecosystem-web.json
template:
src: '{{ playbook_dir }}/templates/ecosystem-web.json.j2'
dest: "{{ lookup('env', 'PWD')}}/ecosystem-web.json"
delegate_to: localhost
- name: create ecosystem-api.json
template:
src: '{{ playbook_dir }}/templates/ecosystem-api.json.j2'
dest: "{{ lookup('env', 'PWD')}}/ecosystem-api.json"
delegate_to: localhost
- name: create ecosystem-bree.json
template:
src: '{{ playbook_dir }}/templates/ecosystem-bree.json.j2'
dest: "{{ lookup('env', 'PWD')}}/ecosystem-bree.json"
delegate_to: localhost