Files
Charon/docs/plans/cleanup_temp_files.md
GitHub Actions 9ad3afbd22 Fix Rate Limiting Issues
- Updated Definition of Done report with detailed checks and results for backend and frontend tests.
- Documented issues related to race conditions and test failures in QA reports.
- Improved security scan notes and code cleanup status in QA reports.
- Added summaries for rate limit integration test fixes, including root causes and resolutions.
- Introduced new debug and integration scripts for rate limit testing.
- Updated security documentation to reflect changes in configuration and troubleshooting steps.
- Enhanced troubleshooting guides for CrowdSec and Go language server (gopls) errors.
- Improved frontend and scripts README files for clarity and usage instructions.
2025-12-12 19:21:44 +00:00

954 B

Cleanup Temporary Files Plan

Problem

The pre-commit hook check-added-large-files failed because backend/temp_index.json and hub_index.json are staged. These are temporary files generated during CrowdSec Hub integration and should not be committed to the repository.

Plan

1. Remove Files from Staging and Filesystem

  • Unstage backend/temp_index.json and hub_index.json using git restore --staged.
  • Remove these files from the filesystem using rm.

2. Update .gitignore

  • Add hub_index.json to .gitignore.
  • Add temp_index.json to .gitignore (or backend/temp_index.json).
  • Add backend/temp_index.json specifically if temp_index.json is too broad, but temp_index.json seems safe as a general temp file name.

3. Verification

  • Run git status to ensure files are ignored and not staged.
  • Run pre-commit hooks again to verify they pass.

Execution

I will proceed with these steps immediately.