diff --git a/.gitignore b/.gitignore index 3efa980..d53c6fe 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,6 @@ .idea/ .env -src/.DS_Store +.DS_Store +.vscode/ +__pycache__/ diff --git a/src/config.py b/src/config.py index c573436..2cbe6bb 100644 --- a/src/config.py +++ b/src/config.py @@ -9,7 +9,7 @@ postgres_user = config('postgres_user') postgres_password = config('postgres_password') host_name = config('host_name') port = config('port') -bucket_name = 'cat-images' +bucket_name = config('bucket_name') TG_TOKEN = config('TG_TOKEN')