lazysql: add module (#7231)
This commit is contained in:
parent
980aece33a
commit
bd8946c773
6 changed files with 101 additions and 0 deletions
19
tests/modules/programs/lazysql/example-config.toml
Normal file
19
tests/modules/programs/lazysql/example-config.toml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
[application]
|
||||
DefaultPageSize = 300
|
||||
DisableSidebar = false
|
||||
SidebarOverlay = false
|
||||
|
||||
[[database]]
|
||||
DBName = "foo"
|
||||
Name = "Production database"
|
||||
Provider = "postgres"
|
||||
URL = "postgres://postgres:urlencodedpassword@localhost:$${port}/foo"
|
||||
[[database.Commands]]
|
||||
Command = "ssh -tt remote-bastion -L $${port}:localhost:5432"
|
||||
WaitForPort = "$${port}"
|
||||
|
||||
[[database]]
|
||||
DBName = "foo"
|
||||
Name = "Development database"
|
||||
Provider = "postgres"
|
||||
URL = "postgres://postgres:urlencodedpassword@localhost:5432/foo"
|
||||
Loading…
Add table
Add a link
Reference in a new issue