""" Central configuration for Nexus Autoparts. """ import os # Database DB_URL = os.environ.get( "DATABASE_URL", "postgresql://nexus:nexus_autoparts_2026@localhost/nexus_autoparts" ) # Legacy SQLite path (used only by migration script) SQLITE_PATH = os.path.join( os.path.dirname(os.path.abspath(__file__)), "vehicle_database", "vehicle_database.db" ) # Application identity APP_NAME = "NEXUS AUTOPARTS" APP_SLOGAN = "Tu conexión directa con las partes que necesitas"