Add monthly export.

This commit is contained in:
mathan 2024-05-14 19:26:00 -07:00
parent a568e16624
commit 59922eb54c
4 changed files with 206 additions and 10 deletions

View file

@ -74,12 +74,20 @@ csv-iexport:
@sleep 10
@nohup ./csv_iexport.sh > csv_iexport.out &
csv-iexport-month:
@docker compose up -d postgres
@sleep 10
@nohup ./csv_iexport_month.sh > csv_iexport_month.out &
kill-csv-export:
@kill -9 `pgrep csv_export.sh`
kill-csv-iexport:
@kill -9 `pgrep csv_iexport.sh`
kill-csv-iexport-month:
@kill -9 `pgrep csv_iexport_month.sh`
# ---------------------------- CSV Export ----------------------------