# config.py - Central configuration # Copy this file to config.py and fill in your values. # ─── NocoDB ─────────────────────────────────────────────────────────────────── NOCODB_URL = "http://192.168.x.x:8080" NOCODB_TOKEN = "your-nocodb-api-token" # ─── SSH ────────────────────────────────────────────────────────────────────── SSH_USERNAME = "admin" SSH_PASSWORD = "your-ssh-password" SSH_PORT = 22 SSH_TIMEOUT = 30 # Netmiko device type for FS switches (IOS-like CLI) DEVICE_TYPE = "cisco_ios" # ─── Output paths ───────────────────────────────────────────────────────────── DATA_DIR = "/data" DB_PATH = "/data/network.db" EXPORTS_DIR = "/data/exports"