Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| BASE_DIR / 'static', | ||
| ) | ||
|
|
||
| STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage' |
There was a problem hiding this comment.
Replace removed STATICFILES_STORAGE in Django 6
The settings now declare STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage', but requirements pin the project to Django >=6.0a1. Django 6 removes the legacy STATICFILES_STORAGE/DEFAULT_FILE_STORAGE settings in favor of the STORAGES mapping, so keeping this line causes startup/staticfiles initialization to fail and prevents WhiteNoise from being used. Configure the STORAGES['staticfiles'] backend instead to keep the app running on the new Django version.
Useful? React with 👍 / 👎.
Summary
Testing
Codex Task