[PR #77] Reorganizes codebase to be more in line with SOPs using Vite #102

Open
opened 2026-03-02 15:47:56 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/PegaProx/project-pegaprox/pull/77
Author: @ISCOzmurph
Created: 2/23/2026
Status: 🔄 Open

Base: mainHead: main


📝 Commits (2)

  • da4ca36 feat(frontend): integrate Vite for SPA build and asset serving
  • d21fbfe feat(version): update version.json to include new web assets

📊 Changes

16 files changed (+46204 additions, -2391 deletions)

View changed files

.gitignore (+28 -0)
📝 README.md (+15 -1)
📝 pegaprox_multi_cluster.py (+18 -2)
📝 version.json (+6 -2)
📝 web/Dev/build.sh (+5 -1)
📝 web/index.html (+14 -2385)
web/package-lock.json (+2648 -0)
web/package.json (+24 -0)
web/postcss.config.js (+6 -0)
web/src/App.jsx (+43048 -0)
web/src/README.md (+8 -0)
web/src/constants.js (+8 -0)
web/src/index.css (+262 -0)
web/src/main.jsx (+19 -0)
web/tailwind.config.js (+66 -0)
web/vite.config.js (+29 -0)

📄 Description

  • Added support for serving a Vite-built single-page application (SPA) from the web/dist/ directory.
  • Updated the main index route to prefer the Vite build output if available, falling back to the legacy web/index.html if not.
  • Introduced a new route for serving Vite-built assets.
  • Updated README to reflect the new build process and directory structure.
  • Deprecated the old build script in favor of the new npm-based build process.

🔄 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/PegaProx/project-pegaprox/pull/77 **Author:** [@ISCOzmurph](https://github.com/ISCOzmurph) **Created:** 2/23/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (2) - [`da4ca36`](https://github.com/PegaProx/project-pegaprox/commit/da4ca36e4ba0859bc9e8d8990d17bf81e8874681) feat(frontend): integrate Vite for SPA build and asset serving - [`d21fbfe`](https://github.com/PegaProx/project-pegaprox/commit/d21fbfebcffe52f6c0296526ad0df3883cc57d49) feat(version): update version.json to include new web assets ### 📊 Changes **16 files changed** (+46204 additions, -2391 deletions) <details> <summary>View changed files</summary> ➕ `.gitignore` (+28 -0) 📝 `README.md` (+15 -1) 📝 `pegaprox_multi_cluster.py` (+18 -2) 📝 `version.json` (+6 -2) 📝 `web/Dev/build.sh` (+5 -1) 📝 `web/index.html` (+14 -2385) ➕ `web/package-lock.json` (+2648 -0) ➕ `web/package.json` (+24 -0) ➕ `web/postcss.config.js` (+6 -0) ➕ `web/src/App.jsx` (+43048 -0) ➕ `web/src/README.md` (+8 -0) ➕ `web/src/constants.js` (+8 -0) ➕ `web/src/index.css` (+262 -0) ➕ `web/src/main.jsx` (+19 -0) ➕ `web/tailwind.config.js` (+66 -0) ➕ `web/vite.config.js` (+29 -0) </details> ### 📄 Description - Added support for serving a Vite-built single-page application (SPA) from the `web/dist/` directory. - Updated the main index route to prefer the Vite build output if available, falling back to the legacy `web/index.html` if not. - Introduced a new route for serving Vite-built assets. - Updated README to reflect the new build process and directory structure. - Deprecated the old build script in favor of the new npm-based build process. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
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/project-pegaprox-PegaProx#102
No description provided.