Develop - #119
Open
madhav2348 wants to merge 15 commits into
Open
Conversation
feat: add job history page with live tracking and details view
Co-authored-by: Laasya <m.laasya07@email.com>
* feat: add drizzle orm schema and migrations (#56) * Revert "feat: add drizzle orm schema and migrations (#56)" (#83) This reverts commit 13e1381. * Develop (#87) * feat: add job history page with live tracking * fix: address PR review comments (UI cleanup + fileHash fix) * fix: stabilize job history pipeline and UI state handling * fix: resolve stuck Next.js ingestion queue jobs by using worker trigger (#67) * quick update --------- Co-authored-by: Ruchira807 <nayaksuman2014@gmail.com> Co-authored-by: Someshwar Yellapu <yellapusomeshwar@gmail.com> * fix: improve collapsed sidebar layout and center nav items #65 * style: final contrast alignment from stashed changes * Revert "style: final contrast alignment from stashed changes" This reverts commit 0da58f8. * fix: refine landing page dark mode contrast, button radius, and elevation --------- Co-authored-by: Madhav Majumdar <161720210+madhav2348@users.noreply.github.com> Co-authored-by: Prachi Shelake <prachishelake2905@gmail.com> Co-authored-by: Ruchira807 <nayaksuman2014@gmail.com> Co-authored-by: Someshwar Yellapu <yellapusomeshwar@gmail.com>
* feat: add drizzle orm schema and migrations (#56) * Revert "feat: add drizzle orm schema and migrations (#56)" (#83) This reverts commit 13e1381. * Develop (#87) * feat: add job history page with live tracking * fix: address PR review comments (UI cleanup + fileHash fix) * fix: stabilize job history pipeline and UI state handling * fix: resolve stuck Next.js ingestion queue jobs by using worker trigger (#67) * quick update --------- Co-authored-by: Ruchira807 <nayaksuman2014@gmail.com> Co-authored-by: Someshwar Yellapu <yellapusomeshwar@gmail.com> * Add csv-stringify dependency * feat(export,xlsx): add XLSX exporter, API route, and UI export link * Remove csv-stringify from dependencies Removed csv-stringify dependency from package.json * Remove csv-stringify and keep xlsx dependency --------- Co-authored-by: Madhav Majumdar <161720210+madhav2348@users.noreply.github.com> Co-authored-by: Prachi Shelake <prachishelake2905@gmail.com> Co-authored-by: Ruchira807 <nayaksuman2014@gmail.com> Co-authored-by: Someshwar Yellapu <yellapusomeshwar@gmail.com>
* feat: add drizzle orm schema and migrations (#56) * Revert "feat: add drizzle orm schema and migrations (#56)" (#83) This reverts commit 13e1381. * Develop (#87) * feat: add job history page with live tracking * fix: address PR review comments (UI cleanup + fileHash fix) * fix: stabilize job history pipeline and UI state handling * fix: resolve stuck Next.js ingestion queue jobs by using worker trigger (#67) * quick update --------- Co-authored-by: Ruchira807 <nayaksuman2014@gmail.com> Co-authored-by: Someshwar Yellapu <yellapusomeshwar@gmail.com> * feat: add OCR worker stub * Add axios dependency to package.json * Add JAVA_OCR_SERVICE_URL for OCR service integration * feat: replace Java OCR with tesseract.js native implementation * chore: remove test files and Tesseract data from repo * fix: implement SQLite update for extracted OCR text --------- Co-authored-by: Madhav Majumdar <161720210+madhav2348@users.noreply.github.com> Co-authored-by: Prachi Shelake <prachishelake2905@gmail.com> Co-authored-by: Ruchira807 <nayaksuman2014@gmail.com> Co-authored-by: Someshwar Yellapu <yellapusomeshwar@gmail.com>
* Add skeleton loading UI components for CloudPage * Skeleton loading UI: Add reusable Skeleton component and implement loading states in CloudPage --------- Co-authored-by: GitWithEkam <your-email@example.com>
* feat: add drizzle orm schema and migrations (#56) * Revert "feat: add drizzle orm schema and migrations (#56)" (#83) This reverts commit 13e1381. * feat: improve homepage hero section visual hierarchy and styling (Closes #90) * revert: remove CSS changes per maintainer feedback * feat: refine hero section styling to match design reference * feat: fix splash page background and eyebrow styling --------- Co-authored-by: Prachi Shelake <prachishelake2905@gmail.com> Co-authored-by: Madhav Majumdar <161720210+madhav2348@users.noreply.github.com>
|
🎉 Thanks for submitting a PR, @madhav2348! Please confirm the following checklist before review:
A maintainer will review your PR shortly. Thank you! 🚀 |
Comment on lines
+11
to
+42
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 20 | ||
| cache: npm | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Run lint | ||
| run: npm run lint | ||
|
|
||
| - name: Build project | ||
| run: npm run build | ||
|
|
||
| - name: Install Vercel CLI | ||
| run: npm install --global vercel | ||
|
|
||
| - name: Pull Vercel Environment | ||
| run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | ||
|
|
||
| - name: Build Vercel Project | ||
| run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | ||
|
|
||
| - name: Deploy to Vercel | ||
| run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} No newline at end of file |
adikulkarni006
self-requested a review
July 9, 2026 08:43
adikulkarni006
approved these changes
Jul 9, 2026
adikulkarni006
left a comment
Collaborator
There was a problem hiding this comment.
"I'm approving this now. My comments are non-blocking; you can fix them in the next PR."
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: Describe your changes
Issue ticket number and link
Closes #
Changes
Testing
Checklist before requesting a review
.envvalues are committed