""" App configuration for staging environment. """ from src.config.base import * ALLOWED_ORIGINS = "https://uat.apollo.stream" # In some environments Redis instance can be reused between multiple apps. # To avoid collisions in such environments each app must add unique prefix to its keys. REDIS_KEY_PREFIX = "uat_apollo_api/" CACHE_KEY_PREFIX = REDIS_KEY_PREFIX