Skip to content

Commit

Permalink
Format reset
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulWheatcroft committed Jun 17, 2024
1 parent 31017c1 commit 41198b7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ def FILTERS_VERBOSE_LOOKUPS():
# If "temp" is in instance name it means it's the temp files bucket
if "temp" in bucket["instance_name"]:
TEMP_FILE_AWS_ACCESS_KEY_ID = app_bucket_credentials["aws_access_key_id"]
TEMP_FILE_AWS_SECRET_ACCESS_KEY = app_bucket_credentials["aws_secret_access_key"]
TEMP_FILE_AWS_SECRET_ACCESS_KEY = app_bucket_credentials[
"aws_secret_access_key"
]
TEMP_FILE_AWS_REGION = app_bucket_credentials["aws_region"]
TEMP_FILE_AWS_S3_REGION_NAME = app_bucket_credentials["aws_region"]
TEMP_FILE_AWS_STORAGE_BUCKET_NAME = app_bucket_credentials["bucket_name"]
Expand Down Expand Up @@ -344,7 +346,7 @@ def FILTERS_VERBOSE_LOOKUPS():
# Vite
VITE_DEV = env.bool("VITE_DEV", default=False)
VITE_DEV_SERVER_URL = env.str("VITE_DEV_SERVER_URL", default="http://localhost:5173")
VITE_MANIFEST_PATH = (BASE_DIR / "front_end" / "build" / ".vite" / "manifest.json")
VITE_MANIFEST_PATH = BASE_DIR / "front_end" / "build" / ".vite" / "manifest.json"

# Selenium (BDD tests)
USE_REMOTE_CHROME = env("USE_REMOTE_CHROME", default=True)
Expand Down

0 comments on commit 41198b7

Please sign in to comment.