https://github.com/jefreesujit/yt-chat
Chat with youtube
https://github.com/jefreesujit/yt-chat
Last synced: 12 months ago
JSON representation
Chat with youtube
- Host: GitHub
- URL: https://github.com/jefreesujit/yt-chat
- Owner: Jefreesujit
- Created: 2024-09-06T17:37:40.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-26T15:29:23.000Z (over 1 year ago)
- Last Synced: 2025-04-05T11:43:33.256Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://youtubechat.vercel.app
- Size: 386 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Youtube Chat
Youtube Chat allows users to connect and chat with their favorite YouTube videos.
## Tech Stack
- Next.js
- React
- Clerk for authentication
- Tailwind CSS for styling
- Lucide-react for icons
- Supabase for Storage
- Pinecone for Vector Database
- Gemini for AI Models
## Getting Started
### Prerequisites
Make sure you have the following installed:
- Node.js
- npm, yarn, pnpm, or bun (any one of these package managers)
### Setup
1. Clone the repository:
```bash
git clone https://github.com/jefreesujit/yt-chat.git
cd chat-with-video
```
2. Install dependencies:
```bash
npm install
# or
yarn install
# or
pnpm install
# or
bun install
```
3. Create a `.env.local` file in the root directory and add the necessary environment variables:
```env
NEXT_PUBLIC_BASE_URL=http://localhost:3000
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=your_clerk_publishable_key
CLERK_SECRET_KEY=your_clerk_secret_key
PINECONE_API_KEY=your_pinecone_api_key
PINECONE_HOST=your_pinecone_host
GOOGLE_API_KEY=your_google_api_key
GOOGLE_GENERATIVE_AI_API_KEY=your_google_generative_ai_api_key
SUPABASE_URL=your_supabase_url
SUPABASE_KEY=your_supabase_key
```
4. Run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
5. Open your browser and navigate to `http://localhost:3000` to see the application running.