Update to 2.0.2 #19

Merged
muppeth merged 3 commits from staging into main 2024-05-13 22:49:53 +02:00
2 changed files with 11 additions and 1 deletions
Showing only changes of commit 62a7145f3a - Show all commits

View file

@ -54,9 +54,10 @@ etherpad_nodejs_version: '21'
etherpad_apt:
- curl
- nodejs
- npm
- git
etherpad_admin_page: 'true' # set to something else if you don't want to build admin page
etherpad_plugins_list:
ep_adminpads2: enabled
ep_comments_page: enabled

View file

@ -7,3 +7,12 @@
chdir: "{{ etherpad_app_dir }}/app"
become: yes
become_user: "{{ etherpad_username }}"
- name: '[INSTALL] - Build admin pages with pnpm'
shell:
cmd: pnpm run build
args:
chdir: "{{ etherpad_app_dir }}/app/admin"
become: yes
become_user: "{{ etherpad_username }}"
when: etherpad_admin_page == "true"