[PR #869] [MERGED] feat: add next-runtime-env #1223

Closed
opened 2026-02-26 19:32:21 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/869
Author: @catalinpit
Created: 1/25/2024
Status: Merged
Merged: 2/15/2024
Merged by: @Mythie

Base: mainHead: feat/add-runtime-env


📝 Commits (10+)

  • d451a7a feat: add next-runtime-env
  • 2f18518 chore: merged main
  • 751fb52 Merge branch 'main' into feat/add-runtime-env
  • c0bb520 chore: merged main
  • 08f82b2 fix: update env entries to evaluate at runtime
  • d13cf74 Merge branch 'main' into feat/add-runtime-env
  • 748bf6d fix: add dropped constants from merge
  • 20e2976 fix: build issues
  • 8ebef83 Merge branch 'main' into feat/add-runtime-env
  • 51608ed fix: lint issue

📊 Changes

61 files changed (+268 additions, -157 deletions)

View changed files

📝 apps/marketing/content/blog/commodifying-signing.mdx (+1 -1)
📝 apps/marketing/content/blog/linear-gh.mdx (+1 -1)
📝 apps/marketing/content/blog/why-i-started-documenso.mdx (+1 -1)
📝 apps/marketing/src/app/(marketing)/[content]/page.tsx (+1 -1)
📝 apps/marketing/src/app/(marketing)/blog/[post]/page.tsx (+5 -1)
📝 apps/marketing/src/app/(marketing)/claimed/page.tsx (+4 -5)
📝 apps/marketing/src/app/(marketing)/pricing/page.tsx (+2 -0)
📝 apps/marketing/src/app/(marketing)/singleplayer/client.tsx (+2 -1)
📝 apps/marketing/src/app/(marketing)/singleplayer/page.tsx (+1 -0)
📝 apps/marketing/src/app/layout.tsx (+28 -24)
📝 apps/marketing/src/components/(marketing)/pricing-table.tsx (+3 -6)
📝 apps/marketing/src/components/(marketing)/single-player-mode/single-player-mode-success.tsx (+2 -1)
📝 apps/marketing/src/components/(marketing)/widget.tsx (+6 -1)
📝 apps/marketing/src/pages/api/claim-plan/index.ts (+8 -6)
📝 apps/web/src/app/(dashboard)/settings/billing/create-billing-portal.action.ts (+2 -1)
📝 apps/web/src/app/(dashboard)/settings/billing/create-checkout.action.ts (+3 -2)
📝 apps/web/src/app/(share)/share/[slug]/opengraph/route.tsx (+3 -1)
📝 apps/web/src/app/(share)/share/[slug]/page.tsx (+5 -5)
📝 apps/web/src/app/(unauthenticated)/signin/page.tsx (+5 -1)
📝 apps/web/src/app/(unauthenticated)/signup/page.tsx (+5 -1)

...and 41 more files

📄 Description

This PR adds the package next-runtime-env to populate the public environment variables at runtime.


🔄 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/869 **Author:** [@catalinpit](https://github.com/catalinpit) **Created:** 1/25/2024 **Status:** ✅ Merged **Merged:** 2/15/2024 **Merged by:** [@Mythie](https://github.com/Mythie) **Base:** `main` ← **Head:** `feat/add-runtime-env` --- ### 📝 Commits (10+) - [`d451a7a`](https://github.com/documenso/documenso/commit/d451a7accecc19bfdf1be559e4c5af79c3e14002) feat: add next-runtime-env - [`2f18518`](https://github.com/documenso/documenso/commit/2f18518961a8e953e601da471dc7e0dfa4b8aa6a) chore: merged main - [`751fb52`](https://github.com/documenso/documenso/commit/751fb5275c84888de1bd942c0258fd2a268d18ba) Merge branch 'main' into feat/add-runtime-env - [`c0bb520`](https://github.com/documenso/documenso/commit/c0bb5205e18d05dfa881dab33a4e39b7992e64da) chore: merged main - [`08f82b2`](https://github.com/documenso/documenso/commit/08f82b23dcc78f309f648785574cfe30eb0e2387) fix: update env entries to evaluate at runtime - [`d13cf74`](https://github.com/documenso/documenso/commit/d13cf743bfe6dcbaa66a6bb6552845e44b166bf2) Merge branch 'main' into feat/add-runtime-env - [`748bf6d`](https://github.com/documenso/documenso/commit/748bf6de6b4a37ce42de728c2ad99085959ba550) fix: add dropped constants from merge - [`20e2976`](https://github.com/documenso/documenso/commit/20e297673168b81c4fc5f807f892603e30866a28) fix: build issues - [`8ebef83`](https://github.com/documenso/documenso/commit/8ebef831acf32ab55928758af94253665af78b87) Merge branch 'main' into feat/add-runtime-env - [`51608ed`](https://github.com/documenso/documenso/commit/51608ed390bace38800deca52256aab8492731c7) fix: lint issue ### 📊 Changes **61 files changed** (+268 additions, -157 deletions) <details> <summary>View changed files</summary> 📝 `apps/marketing/content/blog/commodifying-signing.mdx` (+1 -1) 📝 `apps/marketing/content/blog/linear-gh.mdx` (+1 -1) 📝 `apps/marketing/content/blog/why-i-started-documenso.mdx` (+1 -1) 📝 `apps/marketing/src/app/(marketing)/[content]/page.tsx` (+1 -1) 📝 `apps/marketing/src/app/(marketing)/blog/[post]/page.tsx` (+5 -1) 📝 `apps/marketing/src/app/(marketing)/claimed/page.tsx` (+4 -5) 📝 `apps/marketing/src/app/(marketing)/pricing/page.tsx` (+2 -0) 📝 `apps/marketing/src/app/(marketing)/singleplayer/client.tsx` (+2 -1) 📝 `apps/marketing/src/app/(marketing)/singleplayer/page.tsx` (+1 -0) 📝 `apps/marketing/src/app/layout.tsx` (+28 -24) 📝 `apps/marketing/src/components/(marketing)/pricing-table.tsx` (+3 -6) 📝 `apps/marketing/src/components/(marketing)/single-player-mode/single-player-mode-success.tsx` (+2 -1) 📝 `apps/marketing/src/components/(marketing)/widget.tsx` (+6 -1) 📝 `apps/marketing/src/pages/api/claim-plan/index.ts` (+8 -6) 📝 `apps/web/src/app/(dashboard)/settings/billing/create-billing-portal.action.ts` (+2 -1) 📝 `apps/web/src/app/(dashboard)/settings/billing/create-checkout.action.ts` (+3 -2) 📝 `apps/web/src/app/(share)/share/[slug]/opengraph/route.tsx` (+3 -1) 📝 `apps/web/src/app/(share)/share/[slug]/page.tsx` (+5 -5) 📝 `apps/web/src/app/(unauthenticated)/signin/page.tsx` (+5 -1) 📝 `apps/web/src/app/(unauthenticated)/signup/page.tsx` (+5 -1) _...and 41 more files_ </details> ### 📄 Description This PR adds the package [next-runtime-env](https://github.com/expatfile/next-runtime-env/) to populate the public environment variables at runtime. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 19:32:21 +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#1223
No description provided.