Update to python 3.14 | Convert to Vite project on Node 24#516
Merged
ShaneIsrael merged 4 commits intodevelopfrom Mar 25, 2026
Merged
Update to python 3.14 | Convert to Vite project on Node 24#516ShaneIsrael merged 4 commits intodevelopfrom
ShaneIsrael merged 4 commits intodevelopfrom
Conversation
…form, so pip falls back to building from source — and its pyproject.toml has a metadata format issue that the newer scikit-build-core rejects.
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.
This pull request makes significant updates to both the client and server sides of the application. The most notable changes include migrating the client build system from Create React App (CRA) to Vite, upgrading the Node.js and Python versions in the Docker environment, and improving password security by using stronger hashing algorithms. Additionally, there are several codebase modernizations and environment variable updates to support the new build system.
Build System and Environment Updates
package.json, replacingpublic/index.htmlwith a newindex.html, and adding avite.config.jsfor Vite-specific configuration. This also includes changes to environment variable usage and proxy settings. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12]Security and Database Improvements
sha256topbkdf2:sha256for all new users and admin accounts, improving password security. [1] [2] [3]Database Query Modernization
Model.query.get(id)calls with the recommendeddb.session.get(Model, id)pattern throughout the backend codebase for improved compatibility with newer SQLAlchemy versions. [1] [2] [3] [4] [5] [6] [7] [8]Environment Variable and Code Cleanups
process.env.REACT_APP_*toimport.meta.env.VITE_*to align with Vite's environment variable system. [1] [2] [3] [4]These changes collectively modernize the stack, improve security, and set the foundation for faster development and builds.