feat: Add playground mode for instant demo without login (#21)#23
Merged
DevanshuNEU merged 1 commit intoDec 4, 2025
Merged
Conversation
Allows users to try the product instantly without signup: Frontend: - New Playground component as landing page - Pre-indexed repo selector (Flask, FastAPI, Express) - Example query suggestions - Rate limit indicator (5 free searches) - Beautiful signup CTA after limit reached - Redirects logged-in users to dashboard Backend: - New /api/playground/search endpoint (no auth) - New /api/playground/repos endpoint - IP-based rate limiting (10/hour) - Redis caching for fast responses (~122ms cached) - Auto-loads demo repos on startup Results: - Zero friction for new users - 122ms search response (cached) - 74% match accuracy - Clear conversion path to signup
|
@DevanshuNEU is attempting to deploy a commit to the Dev's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Summary
Adds a playground landing page that lets users try CodeIntel instantly without signup - removing the biggest friction point for new visitors.
Changes
Frontend
Playground.tsxcomponent as default landing pageBackend
POST /api/playground/search- public search endpointGET /api/playground/repos- list available demo reposResults
Screenshots
Testing
Closes #21