ansible/roles/codimd/handlers/main.yml
2019-03-11 18:10:35 +01:00

15 lines
343 B
YAML

---
# Build front-end bundle
# This can take very long and requires > 2GB of RAM
- name: Build front-end for CodiMD
command: yarn run build
args:
chdir: /var/local/codimd/codimd
become: true
become_user: codimd
# Reload systemd daemons when a service file changes
- name: Reload systemd daemons
systemd:
daemon_reload: true