Skip to content

Commit

Permalink
fixup! isolate mandatory env vars in test.py, remove corresponding de…
Browse files Browse the repository at this point in the history
…fault values from base.py
  • Loading branch information
vincentporte committed Dec 19, 2024
1 parent 4f5f465 commit b960a63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/settings/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
AWS_S3_ACCESS_KEY_ID = os.getenv("CELLAR_ADDON_KEY_ID", "minioadmin")
AWS_S3_SECRET_ACCESS_KEY = os.getenv("CELLAR_ADDON_KEY_SECRET", "minioadmin")
AWS_S3_ENDPOINT_URL = (
f"{os.getenv('CELLAR_ADDON_PROTOCOL', 'http')}://{os.getenv('CELLAR_ADDON_HOST', 'localhost:900')}"
f"{os.getenv('CELLAR_ADDON_PROTOCOL', 'http')}://{os.getenv('CELLAR_ADDON_HOST', 'localhost:9000')}"
)
AWS_STORAGE_BUCKET_NAME = "private-bucket"
AWS_STORAGE_BUCKET_NAME_PUBLIC = "public-bucket"
Expand Down

0 comments on commit b960a63

Please sign in to comment.