├── .github └── docs │ └── images │ ├── chatgpt-conversation.png │ └── redirect_uri.png ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── handlers │ └── user.ts ├── index.ts └── middleware │ └── clerk.ts ├── tsconfig.json └── wrangler.toml /.github/docs/images/chatgpt-conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/.github/docs/images/chatgpt-conversation.png -------------------------------------------------------------------------------- /.github/docs/images/redirect_uri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/.github/docs/images/redirect_uri.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .envrc 3 | clerk-app.json 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/handlers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/src/handlers/user.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/middleware/clerk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/src/middleware/clerk.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eidam/chatgpt-plugin-clerk-auth/HEAD/wrangler.toml --------------------------------------------------------------------------------