From 7f9f2d66f3d1b83262434a5da96e27fea140802b Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 7 May 2025 09:49:21 +0300 Subject: [PATCH] Ignore database backup files in .gitignore Added `db_backups` to the `.gitignore` file to prevent accidental inclusion of backup files in version control. This helps maintain a cleaner repository and avoids potential security risks. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0d449219..48ce1e98 100644 --- a/.gitignore +++ b/.gitignore @@ -75,6 +75,7 @@ dmypy.json .pyre/ .pytype/ cython_debug/ +db_backups services_data services_data/postgres/* services_data/redis/*