Skip to content

chore: repo cleanup — remove runtime files, fix docs, simplify TODO#111

Merged
sjackson0109 merged 3 commits into
mainfrom
fix/repo-cleanup
May 27, 2026
Merged

chore: repo cleanup — remove runtime files, fix docs, simplify TODO#111
sjackson0109 merged 3 commits into
mainfrom
fix/repo-cleanup

Conversation

@sjackson0109

Copy link
Copy Markdown
Owner

Summary

Housekeeping pass to bring the repository to a clean, production-ready state.

Changes

.gitignore

  • Added patterns for runtime-generated TXT files: \memories_.txt, \signals_dca_.txt, \ rainer_last_training_time.txt, neural weight files
  • Added coin subdirectory exclusions: \�pp/BTC/, \�pp/ETH/, \�pp/XRP/, \�pp/DOGE/, \�pp/BNB/\

Runtime files removed from tracking (git rm --cached)

  • 28 coin-specific TXT files (BNB, DOGE, ETH, XRP) — DCA signals, futures config, alerts version
  • 7 \�pp/memories_*.txt\ files
  • \�pp/signals_dca_single.txt, \�pp/signals_dca_spread.txt, \�pp/trainer_last_training_time.txt\
  • Stale WAL artefacts: \�pp/order_management.db-shm, \�pp/order_management.db-wal, \order_management.db-shm, \order_management.db-wal\

Documentation fixes

  • README.md: corrected repo name references, stale status text, phantom file paths
  • QUICK_START.md: fixed Windows command syntax and stale instructions
  • .github/DEVELOPMENT_WORKFLOW.md: corrected repo names and workflow steps

TODO.md

  • Replaced 281-line inline roadmap with a concise 3-link pointer to the GitHub project board
  • All tasks have been migrated to GitHub Issues and assigned to Sprints 1–6 in Project #11

Testing

No functional code changes — documentation, .gitignore, and git-tracked file list only.

- .gitignore: add patterns for runtime TXT files (memories, signals, DCA,
  neural weights, trainer timestamps) and coin subdirectories (BTC/ETH/XRP/DOGE/BNB)
- Remove 38 runtime-generated TXT/DB files from git tracking (git rm --cached)
- Consolidate DB files: move market_data.db and portfolio_optimization.db into app/
- Remove stale root-level order_management.db-shm / .db-wal WAL artefacts
- README.md, QUICK_START.md, DEVELOPMENT_WORKFLOW.md: fix repo names,
  stale status references, phantom file paths, Windows command syntax
- TODO.md: replace 281-line inline roadmap with a concise pointer to the
  GitHub project board (https://github.com/users/sjackson0109/projects/11)
Copilot AI review requested due to automatic review settings May 26, 2026 21:56
@sjackson0109 sjackson0109 self-assigned this May 26, 2026

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Housekeeping PR to make the repo cleaner and less noisy by ignoring/removing runtime-generated artifacts, and updating documentation/TODOs to reflect current project tracking on GitHub.

Changes:

  • Expanded .gitignore to exclude additional runtime-generated artifacts (signals/memories/training time, sqlite WAL/SHM, etc.).
  • Updated docs (README.md, QUICK_START.md, .github/DEVELOPMENT_WORKFLOW.md) to reflect the current repo name/paths and updated setup commands.
  • Replaced the long inline TODO.md roadmap with links to the GitHub Project board.

Reviewed changes

Copilot reviewed 42 out of 47 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
TODO.md Replaced long backlog with links to GitHub Project views
README.md Updated clone/path instructions, launch guidance, and requirements
QUICK_START.md Updated status summary and Windows-friendly commands
.gitignore Added ignores for additional runtime artifacts and local-only folders
.github/DEVELOPMENT_WORKFLOW.md Updated repo references and clone instructions
app/order_management.db-wal Removed tracked SQLite WAL artifact
app/signals_dca_single.txt Removed tracked runtime-generated signal file
app/signals_dca_spread.txt Removed tracked runtime-generated signal file
app/trainer_last_training_time.txt Removed tracked runtime-generated training timestamp
app/memories_1hour.txt Removed tracked runtime-generated memory vector
app/memories_2hour.txt Removed tracked runtime-generated memory vector
app/memories_4hour.txt Removed tracked runtime-generated memory vector
app/memories_8hour.txt Removed tracked runtime-generated memory vector
app/memories_12hour.txt Removed tracked runtime-generated memory vector
app/memories_1day.txt Removed tracked runtime-generated memory vector
app/memories_1week.txt Removed tracked runtime-generated memory vector
app/BNB/alerts_version.txt Removed tracked runtime-generated coin artifact
app/BNB/futures_long_onoff.txt Removed tracked runtime-generated coin config artifact
app/BNB/futures_long_profit_margin.txt Removed tracked runtime-generated coin config artifact
app/BNB/futures_short_onoff.txt Removed tracked runtime-generated coin config artifact
app/BNB/futures_short_profit_margin.txt Removed tracked runtime-generated coin config artifact
app/BNB/long_dca_signal.txt Removed tracked runtime-generated coin signal artifact
app/BNB/short_dca_signal.txt Removed tracked runtime-generated coin signal artifact
app/DOGE/alerts_version.txt Removed tracked runtime-generated coin artifact
app/DOGE/futures_long_onoff.txt Removed tracked runtime-generated coin config artifact
app/DOGE/futures_long_profit_margin.txt Removed tracked runtime-generated coin config artifact
app/DOGE/futures_short_onoff.txt Removed tracked runtime-generated coin config artifact
app/DOGE/futures_short_profit_margin.txt Removed tracked runtime-generated coin config artifact
app/DOGE/long_dca_signal.txt Removed tracked runtime-generated coin signal artifact
app/DOGE/short_dca_signal.txt Removed tracked runtime-generated coin signal artifact
app/ETH/alerts_version.txt Removed tracked runtime-generated coin artifact
app/ETH/futures_long_onoff.txt Removed tracked runtime-generated coin config artifact
app/ETH/futures_long_profit_margin.txt Removed tracked runtime-generated coin config artifact
app/ETH/futures_short_onoff.txt Removed tracked runtime-generated coin config artifact
app/ETH/futures_short_profit_margin.txt Removed tracked runtime-generated coin config artifact
app/ETH/long_dca_signal.txt Removed tracked runtime-generated coin signal artifact
app/ETH/short_dca_signal.txt Removed tracked runtime-generated coin signal artifact
app/XRP/alerts_version.txt Removed tracked runtime-generated coin artifact
app/XRP/futures_long_onoff.txt Removed tracked runtime-generated coin config artifact
app/XRP/futures_long_profit_margin.txt Removed tracked runtime-generated coin config artifact
app/XRP/futures_short_onoff.txt Removed tracked runtime-generated coin config artifact
app/XRP/futures_short_profit_margin.txt Removed tracked runtime-generated coin config artifact
app/XRP/long_dca_signal.txt Removed tracked runtime-generated coin signal artifact
app/XRP/short_dca_signal.txt Removed tracked runtime-generated coin signal artifact

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread README.md Outdated
Comment thread QUICK_START.md
Comment thread QUICK_START.md Outdated
- README.md: replace phantom pt_server.py with actual pt_api_server.py
- QUICK_START.md: remove contradictory 'Phase 1 not complete' safety warning
  (Phase 1 is substantially complete per status summary)
- QUICK_START.md: replace stale TODO.md grep with link to GitHub Project board sprint view
@sjackson0109 sjackson0109 merged commit 1da2c20 into main May 27, 2026
11 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants