diff --git a/back/data/index.ts b/back/data/index.ts index 2e7dd50a..e2bfa5d7 100644 --- a/back/data/index.ts +++ b/back/data/index.ts @@ -5,4 +5,9 @@ export const sequelize = new Sequelize({ dialect: 'sqlite', storage: `${config.dbPath}database.sqlite`, logging: false, + pool: { + max: 5, + min: 0, + idle: 30000, + }, });