From 4d3544ccc4812ce0dc900041320272c129c35698 Mon Sep 17 00:00:00 2001 From: Ranjan Shrestha Date: Thu, 20 Aug 2026 10:04:09 +0545 Subject: [PATCH] chore: update the download release version of the geo files --- config.py | 8 ++++---- docker-compose.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config.py b/config.py index 1a3215c..404b017 100644 --- a/config.py +++ b/config.py @@ -6,19 +6,19 @@ class Settings(BaseSettings): # World Administrative Boundaries WAB_FILE_PATH: str = "./geodata-prep/geodata/wab.fgb" - WAB_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.0/wab.fgb" + WAB_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.2/wab.fgb" # EMDAT GAUL GAUL_FILE_PATH: str = "./geodata-prep/geodata/gaul.gpkg" - GAUL_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.0/gaul.gpkg" + GAUL_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.2/gaul.gpkg" # World Administrative Boundaries SUPER_SIMPLIFIED_WAB_FILE_PATH: str = "./geodata-prep/geodata/super_simple.wab.fgb" SUPER_SIMPLIFIED_WAB_DOWNLOAD_URL: str = ( - "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.0/super_simple.wab.fgb" + "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.2/super_simple.wab.fgb" ) # EMDAT GAUL SUPER_SIMPLIFIED_GAUL_FILE_PATH: str = "./geodata-prep/geodata/super_simple.gaul.gpkg" SUPER_SIMPLIFIED_GAUL_DOWNLOAD_URL: str = ( - "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.0/super_simple.gaul.gpkg" + "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.2/super_simple.gaul.gpkg" ) diff --git a/docker-compose.yml b/docker-compose.yml index 6ce6d8c..9bc090a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,5 +12,5 @@ services: WAB_FILE_PATH: /geodata/simple.wab.fgb GAUL_FILE_PATH: /geodata/simple.gaul.gpkg SUPER_SIMPLIFIED_WAB_FILE_PATH: /geodata/super_simple.wab.fgb - SUPER_SIMPLIFIED_GAUL_DOWNLOAD_URL: /geodata/super_simple.gaul.gpkg + SUPER_SIMPLIFIED_GAUL_FILE_PATH: /geodata/super_simple.gaul.gpkg command: /bin/sh -c "uvicorn service:app --host 0.0.0.0 --port 8001 --reload --workers 1"