feat: init excalidraw repo

This commit is contained in:
Ivan I. Ovchinnikov
2025-12-15 17:33:27 +00:00
commit dc4da9f869
5 changed files with 120 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
---
- name: Start Excalidraw
hosts: localhost
become: yes
vars:
mongodb_data_dir: "{{ playbook_dir }}/mongo-data"
tasks:
- name: Ensure Excalidraw directories exist and have permissions
file:
path: "{{ item }}"
state: directory
mode: '777'
loop:
- "{{ mongodb_data_dir }}"
- name: Start Excalidraw
command: docker-compose up -d
args:
chdir: "{{ playbook_dir }}"