Add auth for onboarding status page #39
Merged
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 introduces comprehensive Google OAuth 2.0 authentication with domain restriction to the Onboarding Status Web dashboard. It adds server-side session management, new authentication API routes, and updates documentation and deployment configuration to support secure login for @vectorinstitute.ai users only. Environment variables and deployment workflows are updated to ensure proper integration and security.
Authentication System Implementation
iron-session. New API routes were created for login (/api/auth/login), callback (/api/auth/callback), logout (/api/auth/logout), and session info (/api/auth/session). Only @vectorinstitute.ai email addresses are allowed. [1] [2] [3] [4] [5] [6]Documentation Updates
onboarding-status-web-auth.md), updated the main README with setup, environment variables, and troubleshooting for authentication, and included the new doc in the navigation. [1] [2] [3] [4] [5] [6] [7]Configuration and Environment Variables
.env.exampleand documentation, includingNEXT_PUBLIC_GOOGLE_CLIENT_ID,GOOGLE_CLIENT_SECRET,SESSION_SECRET,NEXT_PUBLIC_APP_URL,REDIRECT_URI, andALLOWED_DOMAINS. [1] [2]Deployment Workflow Enhancements