diff options
author | Rasmus Luha <rasmus.luha@ut.ee> | 2025-04-23 23:35:25 +0300 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@ut.ee> | 2025-04-23 23:35:25 +0300 |
commit | 9ba62c9bf9f19053f6eb664db70eb342812efc38 (patch) | |
tree | cee28be75483f6e461deafd7efad181399b6a854 | |
parent | 1a7fa5477b70308ed6e938c99ac3dc162288f36c (diff) |
fix README tables
-rw-r--r-- | README.md | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -30,14 +30,14 @@ If you opt out the interactive mode you have to define needed variables in the c The following variables have to be defined if interactive mode is tured to `False` -| Variable Name | Description | Example Value | -|-------------------------------|-------------------------------------------|---------------------------------------------------------------------------------------------| -| API_URL | API url that returens JSON data | https://api.open-meteo.com/v1/forecast?latitude=58.38&longitude=26.72¤t_weather=true" | -| API_FIELDS | Data fields for pipeline, with json paths | {'temperature': '.current_weather.temperature', 'windspeed': '.current_weather.windspeed'} | -| API_USERNAME | Api username, if required | Placeholder" | -| API_PASSWORD | Api username, if required | Placehoder" | -| PIPELINE_SCHEDULING_PERIOD | How often the pipeline should run | 5 sec | -| PIPELINE_NAME | Name of the pipeline | test_pipeline.json | +| Variable Name | Description | Example Value | +|-------------------------------|-------------------------------------------|-----------------------------------------------------------------------------------------------| +| API_URL | API url that returens JSON data | `https://api.open-meteo.com/v1/forecast?latitude=58.38&longitude=26.72¤t_weather=true"` | +| API_FIELDS | Data fields for pipeline, with json paths | `{'temperature': '.current_weather.temperature', 'windspeed': '.current_weather.windspeed'}` | +| API_USERNAME | Api username, if required | `"Placeholder"` | +| API_PASSWORD | Api username, if required | `"Placeholder"` | +| PIPELINE_SCHEDULING_PERIOD | How often the pipeline should run | `"5 sec"` | +| PIPELINE_NAME | Name of the pipeline | `"test_pipeline.json"` | #### Database |