interface DatabaseCredentials {
    dbname: string;
    engine: string;
    host: string;
    password: string;
    port: string;
    username: string;
}

Properties

dbname: string

The name of the database to connect to.

engine: string

Supported database engines are: 'postgres', 'mysql', 'other'.

host: string

The hostname or resolvable DNS name of the database server.

password: string

The password used to authenticate to the database server.

port: string

The port must be an integer ranging from 0 to 65535.

username: string

The username used to authenticate to the database server.