Rename geocoder service to geography

This commit is contained in:
Romain Thouvenin
2024-03-14 16:47:54 +01:00
parent 96c30cb1cc
commit 357746e843
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import { registerAs } from '@nestjs/config';
export default registerAs('producerServices', () => ({
geographyUrl: process.env.GEOGRAPHY_SERVICE_URL ?? 'v3-geocoder-api',
geographyUrl: process.env.GEOGRAPHY_SERVICE_URL ?? 'v3-geography-api',
geographyPort: process.env.GEOGRAPHY_SERVICE_PORT
? parseInt(process.env.GEOGRAPHY_SERVICE_PORT, 10)
: 5007,