Some checks failed
- Add wallet diagnostics page at /admin/loyalty/wallet-debug (super admin only) with explorer-sidebar pattern: config validation, class status, card inspector, save URL tester, recent enrollments, and Apple Wallet status panels - Fix Google Wallet fat JWT: include both loyaltyClasses and loyaltyObjects in payload, use UNDER_REVIEW instead of DRAFT for class reviewStatus - Fix StorefrontProgramResponse schema: accept google_class_id values while keeping exclude=True (was rejecting non-None values) - Standardize all module configs to read from .env file directly (env_file=".env", extra="ignore") matching core Settings pattern - Add MOD-026 architecture rule enforcing env_file in module configs - Add SVC-005 noqa support in architecture validator - Add test files for dev_tools domain_health and isolation_audit services - Add google_wallet_status.py script for querying Google Wallet API - Use table_wrapper macro in wallet-debug.html (FE-005 compliance) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
867 B
Python
35 lines
867 B
Python
# app/modules/prospecting/config.py
|
|
"""
|
|
Module configuration.
|
|
|
|
Environment-based configuration using Pydantic Settings.
|
|
Settings are loaded from environment variables with PROSPECTING_ prefix.
|
|
|
|
Example:
|
|
PROSPECTING_PAGESPEED_API_KEY=your_key
|
|
"""
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class ModuleConfig(BaseSettings):
|
|
"""Configuration for prospecting module."""
|
|
|
|
# PageSpeed Insights API key (optional, free 25k/day without key)
|
|
pagespeed_api_key: str = ""
|
|
|
|
# HTTP request timeout in seconds
|
|
http_timeout: int = 10
|
|
|
|
# Batch operation limits
|
|
batch_size: int = 100
|
|
|
|
# Max concurrent HTTP requests for batch scanning
|
|
max_concurrent_requests: int = 10
|
|
|
|
model_config = {"env_prefix": "PROSPECTING_", "env_file": ".env", "extra": "ignore"}
|
|
|
|
|
|
# Export for auto-discovery
|
|
config_class = ModuleConfig
|
|
config = ModuleConfig()
|