Skip to content

shawnriju/rediscovr-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rediscovr

Save social media content. Find it later with plain English search.

Project Structure

rediscovr/
├── apps/web/          # Next.js frontend
├── services/api-python/  # FastAPI backend (yt-dlp, Whisper, embeddings)
├── supabase/          # Database migrations
└── packages/          # Shared types (future)

Getting Started

Frontend

cd apps/web
npm install
npm run dev

Backend

cd services/api-python
python -m venv venv
venv\Scripts\activate  # Windows
pip install -r requirements.txt
uvicorn main:app --reload --port 8000

Environment Variables

apps/web/.env.local

NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=

services/api-python/.env

SUPABASE_URL=
SUPABASE_SERVICE_ROLE_KEY=
OPENAI_API_KEY=

About

A full-stack AI bookmark manager that transcribes and indexes social media content for natural language search.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors