Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions config/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,12 @@ class StaticRootS3Boto3Storage(S3Boto3Storage):
COMPRESS_STORAGE = "storages.backends.s3boto3.S3Boto3Storage"
# https://django-compressor.readthedocs.io/en/latest/settings/#django.conf.settings.COMPRESS_URL
COMPRESS_URL = STATIC_URL
# Collectfast

# Collectfast Remove later
# ------------------------------------------------------------------------------
# https://github.com/antonagestam/collectfast#installation
INSTALLED_APPS = ["collectfast"] + INSTALLED_APPS # noqa F405
COLLECTFAST_STRATEGY = "collectfast.strategies.boto3.Boto3Strategy"
# INSTALLED_APPS = ["collectfast"] + INSTALLED_APPS # noqa F405
# COLLECTFAST_STRATEGY = "collectfast.strategies.boto3.Boto3Strategy"

# LOGGING
# ------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --cert=None --client-cert=None --index-url=None --pip-args=None requirements/local.in
# pip-compile requirements/local.in
#
--no-binary psycopg2

Expand Down
1 change: 0 additions & 1 deletion requirements/production.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

gunicorn
psycopg2 --no-binary psycopg2
Collectfast
sentry-sdk
scout-apm

Expand Down
8 changes: 1 addition & 7 deletions requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,6 @@ click-repl==0.3.0
# via
# -r requirements/base.txt
# celery
collectfast==2.2.0
# via -r requirements/production.in
cpuprofile==1.0.1
# via -r requirements/base.txt
cryptography==46.0.7
Expand Down Expand Up @@ -155,7 +153,6 @@ deprecated==1.3.1
django==5.2.13
# via
# -r requirements/base.txt
# collectfast
# daily-active-users
# django-anymail
# django-appconf
Expand Down Expand Up @@ -222,9 +219,7 @@ django-redis==5.0.0
django-robots==6.1
# via -r requirements/base.txt
django-storages[boto3]==1.14.6
# via
# -r requirements/production.in
# collectfast
# via -r requirements/production.in
djangorestframework==3.16.1
# via
# -r requirements/base.txt
Expand Down Expand Up @@ -646,7 +641,6 @@ typing-extensions==4.15.0
# via
# -r requirements/base.txt
# aiosignal
# collectfast
# grpcio
# opentelemetry-api
# opentelemetry-sdk
Expand Down
Loading