WhatsApp/Signal/Formstack/admin updates
This commit is contained in:
parent
bcecf61a46
commit
d0cc5a21de
451 changed files with 16139 additions and 39623 deletions
|
|
@ -1,11 +1,14 @@
|
|||
import type {} from "graphile-config";
|
||||
import type {} from "graphile-worker";
|
||||
|
||||
const preset: GraphileConfig.Preset = {
|
||||
const preset: any = {
|
||||
worker: {
|
||||
connectionString: process.env.DATABASE_URL,
|
||||
maxPoolSize: 10,
|
||||
pollInterval: 2000,
|
||||
maxPoolSize: process.env.BRIDGE_WORKER_POOL_SIZE
|
||||
? parseInt(process.env.BRIDGE_WORKER_POOL_SIZE, 10)
|
||||
: 10,
|
||||
pollInterval: process.env.BRIDGE_WORKER_POLL_INTERVAL
|
||||
? parseInt(process.env.BRIDGE_WORKER_POLL_INTERVAL, 10)
|
||||
: 2000,
|
||||
fileExtensions: [".ts"],
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue