Compare commits
2 Commits
1d38ba1141
...
655cbf50f3
Author | SHA1 | Date |
---|---|---|
|
655cbf50f3 | |
|
1e707ccefa |
|
@ -14,6 +14,13 @@ module.exports = {
|
|||
},
|
||||
timeout: 5000,
|
||||
graphiql: false,
|
||||
pool: {
|
||||
min: 0,
|
||||
max: 20,
|
||||
acquireTimeoutMillis: 300000,
|
||||
createTimeoutMillis: 300000,
|
||||
destroyTimeoutMillis: 300000,
|
||||
},
|
||||
},
|
||||
web: {
|
||||
host: '0.0.0.0',
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.234.1",
|
||||
"version": "1.234.2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "traxxx",
|
||||
"version": "1.234.1",
|
||||
"version": "1.234.2",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@aws-sdk/client-s3": "^3.458.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.234.1",
|
||||
"version": "1.234.2",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -6,6 +6,7 @@ const knex = require('knex');
|
|||
module.exports = knex({
|
||||
client: 'pg',
|
||||
connection: config.database.owner,
|
||||
pool: config.database.pool,
|
||||
// performance overhead, don't use asyncStackTraces in production
|
||||
asyncStackTraces: process.env.NODE_ENV === 'development',
|
||||
// debug: process.env.NODE_ENV === 'development',
|
||||
|
|
Loading…
Reference in New Issue