You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running in production mode and generating static sites, we want all storages to be S3-compatible buckets. However, test automation should be configured differently, probably should use local files for performance. Local dev may want one or the other depending on circumstances.
Create logic in the settings.py to switch configurations per environment
Update example.env with all settings needed to configure S3 storages for dev and prod
Create a new storage class that combines features of S3Storage and ManifestStaticFilesStorage (using ManifestFilesMixin I assume)
The text was updated successfully, but these errors were encountered:
When running in production mode and generating static sites, we want all storages to be S3-compatible buckets. However, test automation should be configured differently, probably should use local files for performance. Local dev may want one or the other depending on circumstances.
S3Storage
andManifestStaticFilesStorage
(usingManifestFilesMixin
I assume)The text was updated successfully, but these errors were encountered: