From 07e3e02f87c96c4c014ac64e18109fc7a196c7dc Mon Sep 17 00:00:00 2001 From: ediakatos Date: Fri, 2 May 2025 15:35:41 +0100 Subject: [PATCH] Updated README logical sqnc --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 6437c56..ec3fe4c 100644 --- a/README.md +++ b/README.md @@ -42,16 +42,6 @@ make .venv # Install dependencies make hooks # Install pre-commit hooks ``` -## Usage - -```bash -make aws_etl # Run the hazard processing pipeline -make local_etl # Run the hazard processing pipeline locally without S3 -make test # Run unit tests -make lint # Run lint checks -make app # Run the interactive Streamlit application -``` - ## Configuration Create a `~/.hazard_tool_rc` file in your home directory @@ -61,13 +51,23 @@ with the following environment variables: export S3_BUCKET= export AWS_ACCESS_KEY_ID= export AWS_SECRET_ACCESS_KEY= -export AWS_DEFAULT_REGION= +export AWS_DEFAULT_REGION=eu-west-2 export USE_LOCAL=true ``` Optionally, adjust path constants (e.g., `ADMIN_VECTOR_PATH`, `POPULATION_RASTER_PATH`) directly in `src/utils/constants.py` if needed. +## Usage + +```bash +make aws_etl # Run the hazard processing pipeline +make local_etl # Run the hazard processing pipeline locally without S3 +make test # Run unit tests +make lint # Run lint checks +make app # Run the interactive Streamlit application +``` + ## Project Structure ```bash