import knex, { Knex } from 'knex'; import { IGlobalVariable } from '@automatisch/types'; const getClient = ($: IGlobalVariable): Knex => { const client = knex({ client: 'pg', version: $.auth.data.version as string, connection: { host: $.auth.data.host as string, port: Number($.auth.data.port), ssl: ($.auth.data.enableSsl === 'true' || $.auth.data.enableSsl === true) as boolean, user: $.auth.data.user as string, password: $.auth.data.password as string, database: $.auth.data.database as string, }, }); return client; }; export default getClient;