Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -61,13 +51,23 @@ with the following environment variables:
export S3_BUCKET=<your-s3-bucket>
export AWS_ACCESS_KEY_ID=<your-aws-access-key-id>
export AWS_SECRET_ACCESS_KEY=<your-aws-secret-access-key>
export AWS_DEFAULT_REGION=<your-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
Expand Down