feat: self-service data upload for course and PDP/AR files (#86)#92
Open
William-Hill wants to merge 14 commits intomainfrom
Open
feat: self-service data upload for course and PDP/AR files (#86)#92William-Hill wants to merge 14 commits intomainfrom
William-Hill wants to merge 14 commits intomainfrom
Conversation
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.
Closes #86
Summary
/admin/uploadpage (admin/ir only) with drag-drop file selector, 10-row preview, and commitcourse_enrollmentsPostgres table viapg.xlsxfiles uploaded to Supabase Storagepdp-uploadsbucket, then GitHub Actionsml-pipeline.ymltriggered viarepository_dispatchNew files
app/admin/upload/page.tsx— upload UIapp/api/admin/upload/preview/route.ts— parse first 50 rows, validate columnsapp/api/admin/upload/commit/route.ts— course enrollment upsert + PDP/AR Storage + Actions dispatch.github/workflows/ml-pipeline.yml— downloads from Supabase Storage, runs ML pipeline, uploads artifactNew env vars required (see
env.example)SUPABASE_SERVICE_ROLE_KEY— for Storage writesGITHUB_PAT— forrepository_dispatch(scope: Actions write)GITHUB_REPO— full repo path e.g.devcolor/codebenders-datathonGitHub Actions secrets required (before workflow can run)
SUPABASE_URL,SUPABASE_SERVICE_ROLE_KEY,DB_HOST,DB_USER,DB_PASSWORD,DB_PORT,DB_NAME,DB_SSLSupabase setup required
Create a private Storage bucket named
pdp-uploadsin the Supabase dashboardTest plan
/admin/upload; other roles are redirected to/course_enrollmentstable, returns{ inserted, skipped, errors }{ status: "processing", actionsUrl }npx tsc --noEmitpasses with 0 errors