mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
|
|
/* prettier-ignore */
|
||
|
|
module.exports = {
|
||
|
|
client: 'pg',
|
||
|
|
connection: process.env.SUPABASE_URL,
|
||
|
|
searchPath: ['knex','public'],
|
||
|
|
pool: {
|
||
|
|
min: 0,
|
||
|
|
max: 50,
|
||
|
|
acquireTimeoutMillis: 60 * 1000
|
||
|
|
}
|
||
|
|
};
|