Waste-audit cleanup: remove debug artifacts, tighten entrypoint/CI, and harden settings#28
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
cookies.txt, capturedlogin_response*.html, Playwright debug scripts,test_rest_api.py,static/index.html, malformed template files andtemplates/static/duplicates) and added ignore patterns to.gitignore.makemigrationsindocker/entrypoint.shwith a dry-run check (makemigrations --check --dry-run) and made application migration apply non-interactively (migrate --noinput)..github/workflows/docker-publish.yml) that runspython manage.py makemigrations --check --dry-runbeforepytest.techblog_cms/settings.pyby creatingLOG_DIR, routing file handler toLOG_DIR, consolidatingCSRF_TRUSTED_ORIGINSinto an env-castable setting, avoiding disabling CSRF middleware for tests, and switching test-time cache to an in-memoryLocMemCache/session backend to avoid Redis dependency.settings_production.pyinsertSecurityMiddlewareonly if not already present.markdown_filterwith a fallback linkifier to ensure plain URLs are linkified even ifmarkdown.extensions.linkifyis unavailable.README.mdto reflect the consolidated structure.Testing
python manage.py checkwhich succeeded with no issues.TESTING=True python manage.py makemigrations --check --dry-runin CI-style mode which completed successfully.python -m pytest -v, resulting in all tests passing (16 passed).docker compose configbut it could not be executed in this environment because Docker is not installed (docker: command not found).Codex Task