fix: address validation blockers and CI/frontend alignment#21
Merged
Conversation
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.
Motivation
npm/package-lock.jsonfor consistent builds.Description
supabase,sqlglot, andcryptographytobackend/pyproject.tomlto support Supabase integration, SQL parsing, and encryption.backend/.env.examplewithENCRYPTION_KEY,FRONTEND_URL,SUPABASE_SERVICE_KEY,ENVIRONMENT, andGROQ_API_KEYplaceholders required at runtime.frontend/package.jsonto ensure valid JSON and added thereactflowdependency, and normalized quoting infrontend/src/app/(dashboard)/page.tsxto fix escaped-quote issues..github/workflows/ci.ymlfrontend jobs to usenpm/package-lock.jsonandnpm ci/npm run build/npm run lintinstead ofpnpmto match the repository setup.Testing
find . -name "*.py" -exec python -m py_compile {} \;which completed successfully and reported all Python files have valid syntax.frontend/package.jsonwithpython -m json.toolwhich succeeded and confirmed valid JSON.rgwhich reported no problems after the fix.npm installinfrontendwhich failed in this environment due to an external registry403 Forbiddenerror and is marked as a non-code-related failure.npm run buildinfrontendwhich failed becauseNEXT_PUBLIC_API_URL,NEXT_PUBLIC_SUPABASE_URL, andNEXT_PUBLIC_SUPABASE_ANON_KEYare not set in the environment and is expected without real deployment keys.Codex Task