mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
35 lines
642 B
JavaScript
35 lines
642 B
JavaScript
const engines = [
|
|
{
|
|
label: 'MySQL',
|
|
connection: {
|
|
engine: 'mysql@dbgate-plugin-mysql',
|
|
server: 'localhost',
|
|
password: 'Pwd2020Db',
|
|
user: 'root',
|
|
port: 15001,
|
|
},
|
|
},
|
|
{
|
|
label: 'PostgreSQL',
|
|
connection: {
|
|
engine: 'postgres@dbgate-plugin-postgres',
|
|
server: 'localhost',
|
|
password: 'Pwd2020Db',
|
|
user: 'postgres',
|
|
port: 15000,
|
|
},
|
|
},
|
|
{
|
|
label: 'SQL Server',
|
|
connection: {
|
|
engine: 'mssql@dbgate-plugin-mssql',
|
|
server: 'localhost',
|
|
password: 'Pwd2020Db',
|
|
user: 'sa',
|
|
port: 15002,
|
|
},
|
|
},
|
|
];
|
|
|
|
module.exports = engines;
|