- Updated gitignore

- Added bucket_name into config file
This commit is contained in:
2025-07-30 19:16:44 +03:00
parent ed4443b220
commit cd0536c393
2 changed files with 4 additions and 2 deletions

4
.gitignore vendored
View File

@ -2,4 +2,6 @@
.idea/ .idea/
.env .env
src/.DS_Store .DS_Store
.vscode/
__pycache__/

View File

@ -9,7 +9,7 @@ postgres_user = config('postgres_user')
postgres_password = config('postgres_password') postgres_password = config('postgres_password')
host_name = config('host_name') host_name = config('host_name')
port = config('port') port = config('port')
bucket_name = 'cat-images' bucket_name = config('bucket_name')
TG_TOKEN = config('TG_TOKEN') TG_TOKEN = config('TG_TOKEN')