diff options
author | Rasmus Luha <rasmus.luha@ut.ee> | 2025-04-23 00:04:05 +0300 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@ut.ee> | 2025-04-23 00:04:05 +0300 |
commit | 003351a014acbe7f56b23806f8068502f25d8b8f (patch) | |
tree | f1cc54c293e4d703a89a3899a062ba5f0cf61980 /config.py | |
parent | ea4cfadef55319da613901017a586043e75e769f (diff) |
splitJson template fix, minor fixes, nifi almost done - needs password encryption
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -INTERACTIVE_MODE=False +INTERACTIVE_MODE=True ## Nifi NIFI_USER="lab08nifiuser" @@ -26,7 +26,7 @@ DB_PASS="admin" ## Needed if Interactive mode turned off API_URL="https://api.open-meteo.com/v1/forecast?latitude=58.38&longitude=26.72¤t_weather=true" API_FIELDS={'temperature': '.current_weather.temperature', 'windspeed': '.current_weather.windspeed'} -API_URL_USERNAME="TODO" -API_URL_PASSWORD="TODO" +API_USERNAME="TODO" +API_PASSWORD="TODO" PIPELINE_SCHEDULING_PERIOD="5 sec" PIPELINE_NAME="test_pipeline.json" |