From 23405e1956e852db2882416cfdd4d140911b9577 Mon Sep 17 00:00:00 2001 From: Jason Moore Date: Wed, 10 Jan 2024 17:12:02 +0800 Subject: [PATCH 1/3] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 64fb0d1b..1abd8bb5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -62,3 +62,4 @@ django-import-export==2.7.1 babel==2.9.1 pandas==2.0.2 git+https://github.com/dbca-wa/wagov_utils +git+https://github.com/dbca-wa/appmonitor_client.git#egg=appmonitor_client From 92248d91df3c6cce9950e364e64e3371b6cb6abc Mon Sep 17 00:00:00 2001 From: Jason Moore Date: Wed, 10 Jan 2024 17:12:44 +0800 Subject: [PATCH 2/3] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 1abd8bb5..fa3084fd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -63,3 +63,4 @@ babel==2.9.1 pandas==2.0.2 git+https://github.com/dbca-wa/wagov_utils git+https://github.com/dbca-wa/appmonitor_client.git#egg=appmonitor_client +python-decouple==3.8 From d8b4b893c72c250488ea93a508c493da93538e3d Mon Sep 17 00:00:00 2001 From: Jason Moore Date: Wed, 10 Jan 2024 17:14:56 +0800 Subject: [PATCH 3/3] Update settings.py --- boranga/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/boranga/settings.py b/boranga/settings.py index b6439daf..3cfefaea 100755 --- a/boranga/settings.py +++ b/boranga/settings.py @@ -97,6 +97,7 @@ def show_toolbar(request): 'multiselectfield', 'import_export', 'ledger_api_client', + 'appmonitor_client', ] ADD_REVERSION_ADMIN=True @@ -211,6 +212,7 @@ def show_toolbar(request): CRON_CLASSES = [ 'boranga.cron.OracleIntegrationCronJob', + 'appmonitor_client.cron.CronJobAppMonitorClient', ]