Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikhorluck committed Aug 23, 2024
1 parent 3741943 commit e58de55
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions onlineweb4/settings/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

STATIC_LOCATION = "static"


STATIC_URL = f"https://{AWS_S3_CUSTOM_DOMAIN}/{STATIC_LOCATION}/"

WIKI_ATTACHMENTS_LOCAL_PATH = False
Expand All @@ -32,12 +31,12 @@
"BACKEND": "storages.backends.s3.S3Storage",
"OPTIONS": {
"location": MEDIA_LOCATION,
}
},
},
"staticfiles": {
"BACKEND": "storages.backends.s3.S3Storage",
"OPTIONS": {
"location": STATIC_LOCATION,
}
}
},
},
}

0 comments on commit e58de55

Please sign in to comment.