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
docs: add TODO tracker and update documentation for Cloudflare Workers
Added comprehensive implementation tracking and updated all documentation to accurately reflect Cloudflare Workers deployment architecture.
Key additions:
- Created TODO.md with 9-phase implementation roadmap covering setup, development, testing, and deployment
- Organized tasks by logical dependencies with progress tracking checkboxes
- Updated all documentation from Next.js 14 to Next.js 15
Documentation updates for Cloudflare Workers:
- Clarified that GhostPaste runs entirely on Cloudflare's edge network using native R2 bindings
- Replaced AWS SDK references with Workers-specific R2 bucket bindings
- Added Workers runtime limits (100MB request size, 50ms CPU time)
- Updated development setup to use wrangler.toml instead of environment variables
- Added scheduled worker configuration for CRON-based expiry cleanup
- Enhanced README with Wrangler CLI setup and deployment instructions
- Added reminders to use official documentation and CLI tools
The project now has clear guidance for building a Next.js application deployed to Cloudflare Workers with native R2 integration, providing better performance and simpler configuration than traditional approaches.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CLAUDE.md
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -74,4 +74,8 @@ For detailed architecture, API specs, and data models, refer to `docs/SPEC.md`.
74
74
7. When merging, write commit summary from all commits in the pull request
75
75
8. Use a comprehensive summary (not a commit list) as the squash merge commit message, describing the overall work accomplished in the PR
76
76
- Prefer rebase over merge to keep history clean
77
-
- Always pull latest changes from `main` before starting new work
77
+
- Always pull latest changes from `main` before starting new work
78
+
79
+
## Best Practices
80
+
81
+
- Always check official documentation of frameworks, UI components, Cloudflare, CodeMirror before implementing changes. If they provide generator or command line, please follow the documentation instead of manually generate them.
0 commit comments