- Add GET/PUT /pos/api/config/modules endpoints in POS config_bp.py - Update sidebar.js to filter nav items based on enabled modules - Add Modules section to POS config.html with toggles for WhatsApp, Marketplace, MercadoLibre - Add module load/save logic to POS config.js - Preload modules in app-init.js for sidebar caching - Add tenant module management to Instance Manager - get_tenant_modules / update_tenant_modules in tenant_service.py - GET/PUT /api/tenants/<id>/modules endpoints in tenants_bp.py - Add modules modal to manager index.html - Add module editing UI and logic to manager.js - Add toggle-switch CSS to manager.css
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
"""
|
|
Central configuration for Nexus Autoparts.
|
|
"""
|
|
import os
|
|
|
|
# Database
|
|
DB_URL = os.environ.get("DATABASE_URL")
|
|
if not DB_URL:
|
|
raise ValueError(
|
|
"DATABASE_URL environment variable is required. "
|
|
"Example: postgresql://user:pass@localhost/nexus_autoparts"
|
|
)
|
|
|
|
MASTER_DB_URL = os.environ.get("MASTER_DB_URL") or DB_URL
|
|
TENANT_DB_URL_TEMPLATE = os.environ.get("TENANT_DB_URL_TEMPLATE") or DB_URL.replace("nexus_autoparts", "{db_name}")
|
|
|
|
# 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"
|
|
)
|
|
|
|
# JWT Authentication
|
|
JWT_SECRET = os.environ.get("JWT_SECRET")
|
|
if not JWT_SECRET:
|
|
raise ValueError(
|
|
"JWT_SECRET environment variable is required. "
|
|
"Generate one with: python3 -c 'import secrets; print(secrets.token_hex(32))'"
|
|
)
|
|
|
|
JWT_ACCESS_EXPIRES = 900 # 15 minutes
|
|
JWT_REFRESH_EXPIRES = 2592000 # 30 days
|
|
|
|
# Application identity
|
|
APP_NAME = "NEXUS AUTOPARTS"
|
|
APP_SLOGAN = "Tu conexión directa con las partes que necesitas"
|