Open
Conversation
Sets up the full project structure with device registration, notification sending (with stubbed APNs/FCM providers), API key auth middleware, and D1 schema for devices and api_keys tables. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
… config Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add GitHub Actions CI workflow (lint, typecheck, test) on push/PR to main - Add GitHub Actions deploy workflow using wrangler on push to main - Add vitest with tests for health, device registration, and notification endpoints (10 tests) - Add lint and test scripts to package.json Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The lock file was generated on macOS and was missing resolved entries for Linux platform packages (@esbuild/linux-*), causing `npm ci` to fail in CI (ubuntu-latest). Regenerated to include all platform optional deps. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
wrangler 3.x bundled esbuild 0.17.19 which conflicted with vitest's requirement for esbuild 0.27.x, causing npm ci to fail in CI. Upgrading wrangler to v4 resolves the esbuild version conflict. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Adds project overview, architecture diagrams, conventions, build commands, and lessons learned following the escuchame-swift pattern. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Summary
POST /api/v1/devices/register) and notification send endpoint (POST /api/v1/notifications/send)devices+api_keystables), and stubbed APNs/FCM push providersopengame-api-dbD1 database (ID:cec599e8-e064-4034-b035-3d97ed3b222c)Test plan
npm run devand hitGET /api/v1/healthto verify worker starts/api/v1/devices/registernpm run typecheckto confirm no type errorsnpm run deploy🤖 Generated with Claude Code