Skip to content

Commit 330f73e

Browse files
committed
Remove Collect Fast
1 parent d0a1e00 commit 330f73e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config/settings/production.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@
8888
# STATIC
8989
# ------------------------
9090
STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"
91-
COLLECTFAST_STRATEGY = "collectfast.strategies.boto3.Boto3Strategy"
92-
STATIC_URL = f"https://{aws_s3_domain}/static/"
91+
# COLLECTFAST_STRATEGY = "collectfast.strategies.boto3.Boto3Strategy"
92+
# STATIC_URL = f"https://{aws_s3_domain}/static/"
9393
# MEDIA
9494
# ------------------------------------------------------------------------------
9595
DEFAULT_FILE_STORAGE = "course_api.utils.storages.MediaRootS3Boto3Storage"
9696
MEDIA_URL = f"https://{aws_s3_domain}/media/"
97-
97+
9898
# EMAIL
9999
# ------------------------------------------------------------------------------
100100
# https://docs.djangoproject.com/en/dev/ref/settings/#default-from-email
@@ -139,7 +139,7 @@
139139
# Collectfast
140140
# ------------------------------------------------------------------------------
141141
# https://github.com/antonagestam/collectfast#installation
142-
INSTALLED_APPS = ["collectfast"] + INSTALLED_APPS # noqa F405
142+
# INSTALLED_APPS = ["collectfast"] + INSTALLED_APPS # noqa F405
143143

144144
# LOGGING
145145
# ------------------------------------------------------------------------------

0 commit comments

Comments
 (0)