[PR #2488] [CLOSED] Update instance size #2339

Closed
opened 2026-02-26 20:33:27 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/2488
Author: @mm-pinogy
Created: 2/12/2026
Status: Closed

Base: mainHead: token-exc


📝 Commits (10+)

📊 Changes

22 files changed (+842 additions, -17 deletions)

View changed files

📝 .env.example (+2 -0)
📝 .eslintrc.cjs (+1 -1)
.nvmrc (+1 -0)
DEPLOY.md (+118 -0)
apps/remix/public/_redirects (+4 -0)
apps/token-exchange/.gitignore (+3 -0)
apps/token-exchange/README.md (+150 -0)
apps/token-exchange/app/api/exchange/route.ts (+132 -0)
apps/token-exchange/app/api/health/route.ts (+5 -0)
apps/token-exchange/lib/cors.ts (+131 -0)
apps/token-exchange/lib/exchange.ts (+128 -0)
apps/token-exchange/lib/validate-credentials.ts (+28 -0)
apps/token-exchange/next-env.d.ts (+6 -0)
apps/token-exchange/next.config.ts (+5 -0)
apps/token-exchange/package.json (+24 -0)
apps/token-exchange/tsconfig.json (+21 -0)
netlify.toml (+8 -0)
📝 package-lock.json (+20 -0)
📝 package.json (+1 -0)
patches/zod-prisma-types+3.3.5.patch (+13 -0)

...and 2 more files

📄 Description

Description

Changes Made

  • Change 1
  • Change 2
  • ...

Testing Performed

  • Tested feature X in scenario Y.
  • Ran unit tests for component Z.
  • Tested on browsers A, B, and C.
  • ...

Checklist

  • I have tested these changes locally and they work as expected.
  • I have added/updated tests that prove the effectiveness of these changes.
  • I have updated the documentation to reflect these changes, if applicable.
  • I have followed the project's coding style guidelines.
  • I have addressed the code review feedback from the previous submission, if applicable.

Additional Notes


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/documenso/documenso/pull/2488 **Author:** [@mm-pinogy](https://github.com/mm-pinogy) **Created:** 2/12/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `token-exc` --- ### 📝 Commits (10+) - [`838eee3`](https://github.com/documenso/documenso/commit/838eee3233eecaf3c8c71faf3285652674f4241b) chore: add Netlify redirects - [`158a037`](https://github.com/documenso/documenso/commit/158a03726103d8e7e209eed5a79cc7875574f654) Merge branch 'main' of https://github.com/mm-pinogy/documenso - [`9ccd5e5`](https://github.com/documenso/documenso/commit/9ccd5e557d8d3b788d0eaa3f7edbdf146e0caf4d) chore: add Netlify config - [`6a702f4`](https://github.com/documenso/documenso/commit/6a702f4123799c86c457c34aed7adb8bb49a94f1) Merge branch 'main' of https://github.com/mm-pinogy/documenso - [`0ca84c9`](https://github.com/documenso/documenso/commit/0ca84c9f5c37f2c7ac49120dcfc0e11d3534a67b) chore: use supabase instead - [`de77cbd`](https://github.com/documenso/documenso/commit/de77cbd7019e9979023fb131d43011014fee15f8) Merge branch 'main' of https://github.com/mm-pinogy/documenso - [`ac7aa3e`](https://github.com/documenso/documenso/commit/ac7aa3e2773e5b9171ac8a238930753334d9ad6e) chore: patch for node version on redner deploy - [`49509e1`](https://github.com/documenso/documenso/commit/49509e19397ba8ae2a1896fe7dbc93c097510423) chore: use render - [`336287c`](https://github.com/documenso/documenso/commit/336287cda1b9988cd001c986718ad8befc77f13c) chore: details for blueprint - [`31506e1`](https://github.com/documenso/documenso/commit/31506e1b43a0b09f189d109678946e46de329a3c) Merge branch 'token-exc' of https://github.com/mm-pinogy/documenso into token-exc ### 📊 Changes **22 files changed** (+842 additions, -17 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+2 -0) 📝 `.eslintrc.cjs` (+1 -1) ➕ `.nvmrc` (+1 -0) ➕ `DEPLOY.md` (+118 -0) ➕ `apps/remix/public/_redirects` (+4 -0) ➕ `apps/token-exchange/.gitignore` (+3 -0) ➕ `apps/token-exchange/README.md` (+150 -0) ➕ `apps/token-exchange/app/api/exchange/route.ts` (+132 -0) ➕ `apps/token-exchange/app/api/health/route.ts` (+5 -0) ➕ `apps/token-exchange/lib/cors.ts` (+131 -0) ➕ `apps/token-exchange/lib/exchange.ts` (+128 -0) ➕ `apps/token-exchange/lib/validate-credentials.ts` (+28 -0) ➕ `apps/token-exchange/next-env.d.ts` (+6 -0) ➕ `apps/token-exchange/next.config.ts` (+5 -0) ➕ `apps/token-exchange/package.json` (+24 -0) ➕ `apps/token-exchange/tsconfig.json` (+21 -0) ➕ `netlify.toml` (+8 -0) 📝 `package-lock.json` (+20 -0) 📝 `package.json` (+1 -0) ➕ `patches/zod-prisma-types+3.3.5.patch` (+13 -0) _...and 2 more files_ </details> ### 📄 Description ## Description <!--- Describe the changes introduced by this pull request. --> <!--- Explain what problem it solves or what feature/fix it adds. --> ## Related Issue <!--- If this pull request is related to a specific issue, reference it here using #issue_number. --> <!--- For example, "Fixes #123" or "Addresses #456". --> ## Changes Made <!--- Provide a summary of the changes made in this pull request. --> <!--- Include any relevant technical details or architecture changes. --> - Change 1 - Change 2 - ... ## Testing Performed <!--- Describe the testing that you have performed to validate these changes. --> <!--- Include information about test cases, testing environments, and results. --> - Tested feature X in scenario Y. - Ran unit tests for component Z. - Tested on browsers A, B, and C. - ... ## Checklist <!--- Please check the boxes that apply to this pull request. --> <!--- You can add or remove items as needed. --> - [ ] I have tested these changes locally and they work as expected. - [ ] I have added/updated tests that prove the effectiveness of these changes. - [ ] I have updated the documentation to reflect these changes, if applicable. - [ ] I have followed the project's coding style guidelines. - [ ] I have addressed the code review feedback from the previous submission, if applicable. ## Additional Notes <!--- Provide any additional context or notes for the reviewers. --> <!--- This might include details about design decisions, potential concerns, or anything else relevant. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 20:33:27 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/documenso#2339
No description provided.