UNPKG

@puls-atlas/cli

Version:

The Puls Atlas CLI tool for managing Atlas projects

7 lines 340 B
import { normalizeOptionalString } from './value.js'; export const DEFAULT_ATLAS_PLATFORM_REGION = 'europe-west1'; export const resolveAtlasPlatformRegion = config => normalizeOptionalString(config?.deploy?.cloudRun?.region) ?? DEFAULT_ATLAS_PLATFORM_REGION; export default { DEFAULT_ATLAS_PLATFORM_REGION, resolveAtlasPlatformRegion };