feat(ansible): Ajoute STRIPE_BASEURL et tâche cron pour synchroniser Stripe.

🐛 fix(CustomerController): Crée le client Stripe lors de l'ajout d'un client.
This commit is contained in:
Serreau Jovann
2026-01-16 13:18:05 +01:00
parent 890da18c15
commit e7619e949b
2 changed files with 11 additions and 1 deletions

View File

@@ -87,6 +87,7 @@
VAULT_TOKEN=hvs.QLpUdiptXtSPo5Qf7i2nn2Xz
MAILER_DSN=ses+smtp://AKIAWTT2T22CWBRBBDYN:BBdgb6KxRQ8mNcpWFJsZCJxbSGNdgLhKFiITMErfBlQP@default?region=eu-west-3
PATH_URL=https://intranet.ludikevent.fr
STRIPE_BASEURL=https://intranet.ludikevent.fr
dest: "{{ path }}/.env.local"
when: ansible_os_family == "Debian"
@@ -214,6 +215,13 @@
minute: "*/5"
job: "php {{ path }}/bin/console app:search"
user: root
- name: "Cron Task Search"
ansible.builtin.cron:
name: "Intranet Ludikevent - Stripe"
minute: "0"
hour: "1"
job: "php {{ path }}/bin/console app:stripe:sync"
user: root
- name: "Cron Task Search"
ansible.builtin.cron:
name: "Intranet Ludikevent - Backup"