Feat/leaderboard migration#263
Open
AbuJulaybeeb wants to merge 3 commits into
Open
Conversation
…plementation-drips Scaffolds the workspaces where backend + oracle work will land: - backend/ Fastify REST API (Node/TS) — package.json, tsconfig, .env.example, stub entry - indexer/ Soroban getEvents indexer — same scaffold - oracle/ council aggregator + data adapters + monitor — same scaffold - db/ shared Postgres migrations dir + schema README - infra/ docker-compose.dev.yml (Postgres + Redis) + README - CONTRIBUTING.md describing the implementation-drips workflow - .gitignore: ignore dist/ for the new TS services No GitHub Actions added. All future work targets the implementation-drips branch. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…ion issues - scripts/gen_issues.py — generates all 260 issues (context, what-to-build, acceptance criteria, file location, PR-target reminder) with area/priority labels + phase milestones. Idempotent: skips titles that already exist. Modes: --dry-run, --sample N, or full run. - scripts/create-issues.sh — TSV-driven alternative creator. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
@renoschubert is attempting to deploy a commit to the akanimoh12's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@AbuJulaybeeb Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Owner
|
Please read instruction on making pr, make pr to the branch, not main |
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.
What was done
db/migrations/0004_create_leaderboard.sqldefining theleaderboardtable structure.IF NOT EXISTSguards for both the table creation and the descending points index (idx_lb_points).Why it was done
How it was verified
docs/ORACLE_AND_BACKEND.md.npm run typecheck) to confirm scaffold compilation is intact.Closes #4