Some checks failed
Build and deploy the backend to staging / Build and push image (pull_request) Successful in 2m26s
Run linting on the backend code / Build (pull_request) Successful in 27s
Run testing on the backend code / Build (pull_request) Failing after 49s
Build and release debug APK / Build APK (pull_request) Failing after 3m22s
Build and deploy the backend to staging / Deploy to staging (pull_request) Successful in 25s
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
"""Module setting global parameters for the application such as cache, route generation, etc."""
|
|
|
|
import os
|
|
from pathlib import Path
|
|
from typing import List, Literal, Tuple
|
|
|
|
|
|
LOCATION_PREFIX = Path('src')
|
|
PARAMETERS_DIR = LOCATION_PREFIX / 'parameters'
|
|
AMENITY_SELECTORS_PATH = PARAMETERS_DIR / 'amenity_selectors.yaml'
|
|
LANDMARK_PARAMETERS_PATH = PARAMETERS_DIR / 'landmark_parameters.yaml'
|
|
OPTIMIZER_PARAMETERS_PATH = PARAMETERS_DIR / 'optimizer_parameters.yaml'
|
|
|
|
|
|
PAYPAL_CLIENT_ID = os.getenv("future-paypal-client-id", None)
|
|
PAYPAL_SECRET = os.getenv("future-paypal-secret", None)
|
|
PAYPAL_API_URL = "https://api-m.sandbox.paypal.com"
|
|
|
|
SUPABASE_URL = os.getenv("SUPABASE_URL", None)
|
|
SUPABASE_KEY = os.getenv("SUPABASE_API_KEY", None)
|
|
SUPABASE_TEST_USER_ID = os.getenv("SUPABASE_TEST_USER_ID", None)
|
|
|
|
|
|
cache_dir_string = os.getenv('OSM_CACHE_DIR', './cache')
|
|
OSM_CACHE_DIR = Path(cache_dir_string)
|
|
|
|
OSM_TYPES = List[Literal['way', 'node', 'relation']]
|
|
BBOX = Tuple[float, float, float, float]
|
|
|
|
MEMCACHED_HOST_PATH = os.getenv('MEMCACHED_HOST_PATH', None)
|
|
if MEMCACHED_HOST_PATH == "none":
|
|
MEMCACHED_HOST_PATH = None
|