# .lazysql.toml — Configuración local del proyecto [application] DefaultPageSize = 500 DisableSidebar = false # Conexión a SQLite local (desarrollo) [[database]] Name = 'Desarrollo local' Provider = 'sqlite3' URL = 'file:./dev.db?loc=auto' # Conexión a PostgreSQL (staging) [[database]] Name = 'Staging' Provider = 'postgres' URL = 'postgres://${env:STG_USER}:${env:STG_PASS}@staging.example.com:5432/miapp' # Conexión a PostgreSQL (producción — solo lectura) [[database]] Name = 'Producción' Provider = 'postgres' URL = 'postgres://${env:PROD_USER}:${env:PROD_PASS}@prod.example.com:5432/miapp' ReadOnly = true Commands = [ { Command = 'ssh -tt bastion.prod.com -L ${port}:prod-db:5432', WaitForPort = '${port}' }, ]