""" App configuration for local deployment. """ from src.config.base import * ALLOWED_ORIGINS = "*" # 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 = "" CACHE_KEY_PREFIX = REDIS_KEY_PREFIX