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.
This commit is contained in:
parent
d1cd8515b5
commit
7f9f2d66f3
1 changed files with 1 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -75,6 +75,7 @@ dmypy.json
|
||||||
.pyre/
|
.pyre/
|
||||||
.pytype/
|
.pytype/
|
||||||
cython_debug/
|
cython_debug/
|
||||||
|
db_backups
|
||||||
services_data
|
services_data
|
||||||
services_data/postgres/*
|
services_data/postgres/*
|
||||||
services_data/redis/*
|
services_data/redis/*
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue