diff --git a/defaults/main.yml b/defaults/main.yml
index 14b42ca5c4da019ceec7727e61c3aa6db17721a9..205a144463a45228caf5a65570e1ddba83ec2df8 100644
--- a/defaults/main.yml
+++ b/defaults/main.yml
@@ -56,3 +56,14 @@ ynh_apps: null
   #   args:
   #     domain: domain.tld
   #     path: /ttrss
+
+ynh_discourse_settings:
+  title: "Let's go!"
+  site_description: "Hello"
+  contact_email: "arthur_ynh@{{ ynh_main_domain }}"
+  invite_only: "true"
+  backup_frequency: "1"
+  maximum_backups: "60"
+
+ynh_discourse_plugins:
+  cakeday: "https://github.com/discourse/discourse-cakeday"
diff --git a/handlers/main.yml b/handlers/main.yml
new file mode 100644
index 0000000000000000000000000000000000000000..7cd70ffbabe9b3bb3bc025a89d3ac879cae2e5c6
--- /dev/null
+++ b/handlers/main.yml
@@ -0,0 +1,34 @@
+---
+#-----------------------------------------------------------------------------#
+# ansible-yunohost allows to deploy Yunohost using Ansible                    #
+# Copyright 2021-2021 Lydra https://www.lydra.fr/                             #
+#                                                                             #
+# this program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# this program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program. If not, see <http://www.gnu.org/licenses/>.        #
+#                                                                             #
+#-----------------------------------------------------------------------------#
+
+- name: export new settings to Discourse instance
+  ansible.builtin.shell:
+    sudo -i -u discourse RAILS_ENV=production bin/rake \
+    site_settings:import < /var/www/discourse/config/saved_settings_test.yml
+
+- name: Install new plugin
+  ansible.builtin.command:
+    sudo -i -u discourse RAILS_ENV=production bin/rake \
+    --trace assets:precompile
+
+- name: Restart Discourse after plugin installation
+  ansible.builtin.service:
+    name: discourse
+    state: restarted
diff --git a/tasks/discourse.yml b/tasks/discourse.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a7bcb99c304a2cb5ac5d45fa5c34dd38f243e680
--- /dev/null
+++ b/tasks/discourse.yml
@@ -0,0 +1,39 @@
+---
+#-----------------------------------------------------------------------------#
+# ansible-yunohost allows to deploy Yunohost using Ansible                    #
+# Copyright 2021-2021 Lydra https://www.lydra.fr/                             #
+#                                                                             #
+# this program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# this program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program. If not, see <http://www.gnu.org/licenses/>.        #
+#                                                                             #
+#-----------------------------------------------------------------------------#
+
+- name: Transfer site_settings template file to node
+  ansible.builtin.template:
+    src: templates/saved_settings.yml.j2
+    dest: /var/www/discourse/config/saved_settings_test.yml
+    owner: discourse
+    group: www-data
+    mode: '0660'
+  notify: export new settings to Discourse instance
+  tags: discourse
+
+- name: Download plugin repo
+  ansible.builtin.git:
+    repo: "{{ ynh_discourse_plugins.cakeday }}"
+    dest: /var/www/discourse/plugins/discourse-cakeday
+    version: main
+  notify:
+    - Install new plugin
+    - Restart Discourse after plugin installation
+  tags: discourse
diff --git a/tasks/main.yml b/tasks/main.yml
index 048022126a97752ab524ef026f0195147275096f..6369a55e8b04101674d0de7324f059bb3d87b8f6 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -72,3 +72,8 @@
 - name: Install Yunohost apps
   ansible.builtin.include_tasks: apps.yml
   when: ynh_apps
+
+- name: configure Discourse
+  ansible.builtin.include_tasks: discourse.yml
+  when: ynh_discourse_settings or ynh_discourse_plugins
+  tags: discourse
diff --git a/templates/saved_settings.yml.j2 b/templates/saved_settings.yml.j2
new file mode 100644
index 0000000000000000000000000000000000000000..16c03e2424f48e4563ed1dca7df564aa2798aa81
--- /dev/null
+++ b/templates/saved_settings.yml.j2
@@ -0,0 +1,7 @@
+---
+title: {{ ynh_discourse_settings.title  }}
+site_description: {{ ynh_discourse_settings.site_description  }}
+contact_email: {{ ynh_discourse_settings.contact_email }}
+invite_only: {{ ynh_discourse_settings.invite_only }}
+backup_frequency: {{ ynh_discourse_settings.backup_frequency }}
+maximum_backups: {{ ynh_discourse_settings.maximum_backups }}