import Knex from 'knex' import { Model } from 'objection' const knex = Knex({ client: 'pg', connection: { host: process.env.DB_URL ?? 'localhost', port: 5432, user: 'postgres', password: 'mariochatpgpw', database: 'postgres', }, }) Model.knex(knex) const vapidKeys = { publicKey: 'BEovcVTe3AmMJ8fpMahQqjr2shW74zBW6Imvih274_03nJg9m4hhUIAPc2Ur0_2aryAOXCA9eEulplz2y0CLfwY', privateKey: 'DUT4Fn5r293-e5gTvpgiQtpU5yhjgwASulFZZclFaJg', }