File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 4
4
tasks :
5
5
- name : " Download pretalx data every hour"
6
6
ansible.builtin.cron :
7
- name : " Download pretalx data every hour "
7
+ name : " Download pretalx data once a day at 05:05am "
8
8
minute : " 5"
9
- hour : " 8 " # run once a day at 08:05 am
9
+ hour : " 5 " # run once a day at 08:05 am
10
10
job : " make prod/cron/pretalx"
11
+
12
+ ansible.builtin.cron :
13
+ name : " Download pretix data once a day at 06:05am"
14
+ minute : " 5"
15
+ hour : " 6"
16
+ job : " make prod/cron/pretix"
Original file line number Diff line number Diff line change @@ -18,5 +18,9 @@ prod/manage:
18
18
prod/cron/pretalx:
19
19
$(MAKE_APP) in-container/manage ARG="download_pretalx_data --event=europython-2025"
20
20
21
+
22
+ prod/cron/pretix:
23
+ $(MAKE_APP) in-container/manage ARG="download_pretix_data --event=ep2025"
24
+
21
25
logs:
22
26
docker compose logs -f
You can’t perform that action at this time.
0 commit comments