From a1b2677cf057542e1808bb8cc00aeed0bcc95693 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Romero=20Organv=C3=ADdez?= Date: Sun, 8 Sep 2024 16:47:37 +0200 Subject: [PATCH] fix: Fix issue with webhook in Vagrant --- vagrant/05_run_app.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vagrant/05_run_app.yml b/vagrant/05_run_app.yml index cac4f0f56..51346f1ee 100644 --- a/vagrant/05_run_app.yml +++ b/vagrant/05_run_app.yml @@ -17,11 +17,18 @@ WORKING_DIR: "{{ working_dir }}" tasks: + + - name: Add webhook to .moduleignore + shell: echo "webhook" > {{ working_dir }}.moduleignore + args: + executable: /bin/bash + environment: "{{ common_environment }}" + - name: Set database with Rosemary shell: | source {{ working_dir }}venv/bin/activate cd {{ working_dir }} - rosemary db:migrate + flask db upgrade rosemary db:seed -y --reset args: executable: /bin/bash