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