Add MVP implementation of auth wrapper using google oauth #1
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 a comprehensive initial setup for authentication infrastructure, code quality enforcement, and developer tooling. It adds automated workflows for code checks and unit testing, configures Prettier and pre-commit hooks for code style and linting, and provides a Next.js demo app with server-side Google OAuth authentication. The changes establish a strong foundation for package development and secure authentication using a shared OAuth client model.
CI/CD and Code Quality Automation
code_checks.yml) and unit tests (unit_tests.yml), ensuring automated linting, formatting, type-checking, and test coverage on pushes and pull requests. [1] [2].pre-commit-config.yamland Prettier configuration (.prettierrc.json,.prettierignore) to enforce consistent code style, linting, type checks, and run tests before commits. [1] [2] [3]Authentication Demo App (Next.js)
apps/demo-nextjs) showcasing server-side Google OAuth 2.0 authentication with PKCE, domain restriction, and secure session management using HTTP-only cookies. Includes API routes for login, callback, logout, and session retrieval. [1] [2] [3] [4] [5]Monorepo and Package Management
.npmrcfor GitHub Packages registry and peer dependency handling, supporting monorepo development and private package publishing.Documentation and Developer Experience
README.mdto explain the shared OAuth client architecture, integration steps, security features, and development workflow.Demo App Configuration
next.config.js) for the demo app with strict mode enabled.