diff --git a/CLAUDE.md b/CLAUDE.md index 53099efeb..de34e2f2a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -21,6 +21,8 @@ This is a pnpm workspace monorepo containing multiple product applications with | **picture** | AI image generation | Expo mobile, SvelteKit web, Astro landing | | **uload** | URL shortener | SvelteKit web, PocketBase/Drizzle | | **chat** | AI chat application | NestJS backend, Expo mobile, SvelteKit web, Astro landing | +| **wisekeep** | AI wisdom extraction from video | NestJS backend, Expo mobile, SvelteKit web, Astro landing | +| **quote** | Daily inspiration quotes | NestJS backend, Expo mobile, SvelteKit web, Astro landing | ## Development Commands @@ -33,6 +35,8 @@ pnpm run maerchenzauber:dev pnpm run memoro:dev pnpm run picture:dev pnpm run chat:dev +pnpm run wisekeep:dev +pnpm run quote:dev # Start specific app within project pnpm run dev:memoro:mobile # Just mobile app diff --git a/apps/transcriber/.gitignore b/apps/wisekeep/.gitignore similarity index 100% rename from apps/transcriber/.gitignore rename to apps/wisekeep/.gitignore diff --git a/apps/transcriber/CLAUDE.md b/apps/wisekeep/CLAUDE.md similarity index 91% rename from apps/transcriber/CLAUDE.md rename to apps/wisekeep/CLAUDE.md index 1a11db009..1e830cf7d 100644 --- a/apps/transcriber/CLAUDE.md +++ b/apps/wisekeep/CLAUDE.md @@ -1,10 +1,10 @@ -# CLAUDE.md - Transcriber +# CLAUDE.md - Wisekeep -This file provides guidance to Claude Code when working with the Transcriber project. +This file provides guidance to Claude Code when working with the Wisekeep project. ## Project Overview -Transcriber is an AI-powered YouTube video transcription application with: +Wisekeep is an AI-powered wisdom extraction application that captures insights from video content: - YouTube video download via yt-dlp - Ultra-fast audio transcription using Groq Whisper API (~300x realtime) - Fallback to local Whisper for offline use @@ -15,7 +15,7 @@ Transcriber is an AI-powered YouTube video transcription application with: ## Architecture ``` -apps/transcriber/ +apps/wisekeep/ ├── apps/ │ ├── backend/ # NestJS API server (port 3006) │ ├── web/ # SvelteKit web application @@ -43,22 +43,22 @@ apps/transcriber/ # From monorepo root pnpm install -# Start all transcriber apps -pnpm transcriber:dev +# Start all wisekeep apps +pnpm wisekeep:dev # Start individual apps -pnpm dev:transcriber:backend # NestJS backend (port 3006) -pnpm dev:transcriber:web # SvelteKit web (port 5173) -pnpm dev:transcriber:landing # Astro landing (port 4321) -pnpm dev:transcriber:mobile # Expo mobile +pnpm dev:wisekeep:backend # NestJS backend (port 3006) +pnpm dev:wisekeep:web # SvelteKit web (port 5173) +pnpm dev:wisekeep:landing # Astro landing (port 4321) +pnpm dev:wisekeep:mobile # Expo mobile # Start web + backend together -pnpm dev:transcriber:app +pnpm dev:wisekeep:app ``` ### Environment Variables -Create `apps/transcriber/apps/backend/.env`: +Create `apps/wisekeep/apps/backend/.env`: ```bash PORT=3006 WHISPER_PROVIDER=groq # groq or local diff --git a/apps/transcriber/README.md b/apps/wisekeep/README.md similarity index 100% rename from apps/transcriber/README.md rename to apps/wisekeep/README.md diff --git a/apps/transcriber/apps/backend/.env.example b/apps/wisekeep/apps/backend/.env.example similarity index 100% rename from apps/transcriber/apps/backend/.env.example rename to apps/wisekeep/apps/backend/.env.example diff --git a/apps/transcriber/apps/backend/nest-cli.json b/apps/wisekeep/apps/backend/nest-cli.json similarity index 100% rename from apps/transcriber/apps/backend/nest-cli.json rename to apps/wisekeep/apps/backend/nest-cli.json diff --git a/apps/transcriber/apps/backend/package.json b/apps/wisekeep/apps/backend/package.json similarity index 93% rename from apps/transcriber/apps/backend/package.json rename to apps/wisekeep/apps/backend/package.json index 0071cd797..0bd2566fb 100644 --- a/apps/transcriber/apps/backend/package.json +++ b/apps/wisekeep/apps/backend/package.json @@ -1,8 +1,8 @@ { - "name": "@transcriber/backend", + "name": "@wisekeep/backend", "version": "1.0.0", "private": true, - "description": "YouTube Transcriber Backend - NestJS API", + "description": "Wisekeep Backend - NestJS API for wisdom extraction", "scripts": { "dev": "nest start --watch", "build": "nest build", diff --git a/apps/transcriber/apps/backend/src/app.module.ts b/apps/wisekeep/apps/backend/src/app.module.ts similarity index 100% rename from apps/transcriber/apps/backend/src/app.module.ts rename to apps/wisekeep/apps/backend/src/app.module.ts diff --git a/apps/transcriber/apps/backend/src/health/health.controller.ts b/apps/wisekeep/apps/backend/src/health/health.controller.ts similarity index 100% rename from apps/transcriber/apps/backend/src/health/health.controller.ts rename to apps/wisekeep/apps/backend/src/health/health.controller.ts diff --git a/apps/transcriber/apps/backend/src/health/health.module.ts b/apps/wisekeep/apps/backend/src/health/health.module.ts similarity index 100% rename from apps/transcriber/apps/backend/src/health/health.module.ts rename to apps/wisekeep/apps/backend/src/health/health.module.ts diff --git a/apps/transcriber/apps/backend/src/main.ts b/apps/wisekeep/apps/backend/src/main.ts similarity index 100% rename from apps/transcriber/apps/backend/src/main.ts rename to apps/wisekeep/apps/backend/src/main.ts diff --git a/apps/transcriber/apps/backend/src/playlist/playlist.controller.ts b/apps/wisekeep/apps/backend/src/playlist/playlist.controller.ts similarity index 100% rename from apps/transcriber/apps/backend/src/playlist/playlist.controller.ts rename to apps/wisekeep/apps/backend/src/playlist/playlist.controller.ts diff --git a/apps/transcriber/apps/backend/src/playlist/playlist.module.ts b/apps/wisekeep/apps/backend/src/playlist/playlist.module.ts similarity index 100% rename from apps/transcriber/apps/backend/src/playlist/playlist.module.ts rename to apps/wisekeep/apps/backend/src/playlist/playlist.module.ts diff --git a/apps/transcriber/apps/backend/src/playlist/playlist.service.ts b/apps/wisekeep/apps/backend/src/playlist/playlist.service.ts similarity index 100% rename from apps/transcriber/apps/backend/src/playlist/playlist.service.ts rename to apps/wisekeep/apps/backend/src/playlist/playlist.service.ts diff --git a/apps/transcriber/apps/backend/src/transcription/dto/transcribe-request.dto.ts b/apps/wisekeep/apps/backend/src/transcription/dto/transcribe-request.dto.ts similarity index 100% rename from apps/transcriber/apps/backend/src/transcription/dto/transcribe-request.dto.ts rename to apps/wisekeep/apps/backend/src/transcription/dto/transcribe-request.dto.ts diff --git a/apps/transcriber/apps/backend/src/transcription/entities/transcription-job.entity.ts b/apps/wisekeep/apps/backend/src/transcription/entities/transcription-job.entity.ts similarity index 100% rename from apps/transcriber/apps/backend/src/transcription/entities/transcription-job.entity.ts rename to apps/wisekeep/apps/backend/src/transcription/entities/transcription-job.entity.ts diff --git a/apps/transcriber/apps/backend/src/transcription/transcription.controller.ts b/apps/wisekeep/apps/backend/src/transcription/transcription.controller.ts similarity index 100% rename from apps/transcriber/apps/backend/src/transcription/transcription.controller.ts rename to apps/wisekeep/apps/backend/src/transcription/transcription.controller.ts diff --git a/apps/transcriber/apps/backend/src/transcription/transcription.module.ts b/apps/wisekeep/apps/backend/src/transcription/transcription.module.ts similarity index 100% rename from apps/transcriber/apps/backend/src/transcription/transcription.module.ts rename to apps/wisekeep/apps/backend/src/transcription/transcription.module.ts diff --git a/apps/transcriber/apps/backend/src/transcription/transcription.service.ts b/apps/wisekeep/apps/backend/src/transcription/transcription.service.ts similarity index 100% rename from apps/transcriber/apps/backend/src/transcription/transcription.service.ts rename to apps/wisekeep/apps/backend/src/transcription/transcription.service.ts diff --git a/apps/transcriber/apps/backend/src/websocket/progress.gateway.ts b/apps/wisekeep/apps/backend/src/websocket/progress.gateway.ts similarity index 100% rename from apps/transcriber/apps/backend/src/websocket/progress.gateway.ts rename to apps/wisekeep/apps/backend/src/websocket/progress.gateway.ts diff --git a/apps/transcriber/apps/backend/src/websocket/websocket.module.ts b/apps/wisekeep/apps/backend/src/websocket/websocket.module.ts similarity index 100% rename from apps/transcriber/apps/backend/src/websocket/websocket.module.ts rename to apps/wisekeep/apps/backend/src/websocket/websocket.module.ts diff --git a/apps/transcriber/apps/backend/src/whisper/whisper.controller.ts b/apps/wisekeep/apps/backend/src/whisper/whisper.controller.ts similarity index 100% rename from apps/transcriber/apps/backend/src/whisper/whisper.controller.ts rename to apps/wisekeep/apps/backend/src/whisper/whisper.controller.ts diff --git a/apps/transcriber/apps/backend/src/whisper/whisper.module.ts b/apps/wisekeep/apps/backend/src/whisper/whisper.module.ts similarity index 100% rename from apps/transcriber/apps/backend/src/whisper/whisper.module.ts rename to apps/wisekeep/apps/backend/src/whisper/whisper.module.ts diff --git a/apps/transcriber/apps/backend/src/whisper/whisper.service.ts b/apps/wisekeep/apps/backend/src/whisper/whisper.service.ts similarity index 100% rename from apps/transcriber/apps/backend/src/whisper/whisper.service.ts rename to apps/wisekeep/apps/backend/src/whisper/whisper.service.ts diff --git a/apps/transcriber/apps/backend/src/youtube/youtube.module.ts b/apps/wisekeep/apps/backend/src/youtube/youtube.module.ts similarity index 100% rename from apps/transcriber/apps/backend/src/youtube/youtube.module.ts rename to apps/wisekeep/apps/backend/src/youtube/youtube.module.ts diff --git a/apps/transcriber/apps/backend/src/youtube/youtube.service.ts b/apps/wisekeep/apps/backend/src/youtube/youtube.service.ts similarity index 100% rename from apps/transcriber/apps/backend/src/youtube/youtube.service.ts rename to apps/wisekeep/apps/backend/src/youtube/youtube.service.ts diff --git a/apps/transcriber/apps/backend/tsconfig.json b/apps/wisekeep/apps/backend/tsconfig.json similarity index 100% rename from apps/transcriber/apps/backend/tsconfig.json rename to apps/wisekeep/apps/backend/tsconfig.json diff --git a/apps/transcriber/apps/landing/astro.config.mjs b/apps/wisekeep/apps/landing/astro.config.mjs similarity index 100% rename from apps/transcriber/apps/landing/astro.config.mjs rename to apps/wisekeep/apps/landing/astro.config.mjs diff --git a/apps/transcriber/apps/landing/package.json b/apps/wisekeep/apps/landing/package.json similarity index 94% rename from apps/transcriber/apps/landing/package.json rename to apps/wisekeep/apps/landing/package.json index ccb6938fd..a66741318 100644 --- a/apps/transcriber/apps/landing/package.json +++ b/apps/wisekeep/apps/landing/package.json @@ -1,5 +1,5 @@ { - "name": "@transcriber/landing", + "name": "@wisekeep/landing", "type": "module", "version": "1.0.0", "private": true, diff --git a/apps/transcriber/apps/landing/src/components/CollapsibleSection.astro b/apps/wisekeep/apps/landing/src/components/CollapsibleSection.astro similarity index 100% rename from apps/transcriber/apps/landing/src/components/CollapsibleSection.astro rename to apps/wisekeep/apps/landing/src/components/CollapsibleSection.astro diff --git a/apps/transcriber/apps/landing/src/components/ContentCard.tsx b/apps/wisekeep/apps/landing/src/components/ContentCard.tsx similarity index 100% rename from apps/transcriber/apps/landing/src/components/ContentCard.tsx rename to apps/wisekeep/apps/landing/src/components/ContentCard.tsx diff --git a/apps/transcriber/apps/landing/src/components/ContentCardList.tsx b/apps/wisekeep/apps/landing/src/components/ContentCardList.tsx similarity index 100% rename from apps/transcriber/apps/landing/src/components/ContentCardList.tsx rename to apps/wisekeep/apps/landing/src/components/ContentCardList.tsx diff --git a/apps/transcriber/apps/landing/src/components/Footer.astro b/apps/wisekeep/apps/landing/src/components/Footer.astro similarity index 100% rename from apps/transcriber/apps/landing/src/components/Footer.astro rename to apps/wisekeep/apps/landing/src/components/Footer.astro diff --git a/apps/transcriber/apps/landing/src/components/Navigation.astro b/apps/wisekeep/apps/landing/src/components/Navigation.astro similarity index 100% rename from apps/transcriber/apps/landing/src/components/Navigation.astro rename to apps/wisekeep/apps/landing/src/components/Navigation.astro diff --git a/apps/transcriber/apps/landing/src/components/SearchableContentList.tsx b/apps/wisekeep/apps/landing/src/components/SearchableContentList.tsx similarity index 100% rename from apps/transcriber/apps/landing/src/components/SearchableContentList.tsx rename to apps/wisekeep/apps/landing/src/components/SearchableContentList.tsx diff --git a/apps/transcriber/apps/landing/src/components/TalksSidebar.astro b/apps/wisekeep/apps/landing/src/components/TalksSidebar.astro similarity index 100% rename from apps/transcriber/apps/landing/src/components/TalksSidebar.astro rename to apps/wisekeep/apps/landing/src/components/TalksSidebar.astro diff --git a/apps/transcriber/apps/landing/src/components/ThemeSwitcher.astro b/apps/wisekeep/apps/landing/src/components/ThemeSwitcher.astro similarity index 100% rename from apps/transcriber/apps/landing/src/components/ThemeSwitcher.astro rename to apps/wisekeep/apps/landing/src/components/ThemeSwitcher.astro diff --git a/apps/transcriber/apps/landing/src/components/admin/Dashboard.tsx b/apps/wisekeep/apps/landing/src/components/admin/Dashboard.tsx similarity index 100% rename from apps/transcriber/apps/landing/src/components/admin/Dashboard.tsx rename to apps/wisekeep/apps/landing/src/components/admin/Dashboard.tsx diff --git a/apps/transcriber/apps/landing/src/components/admin/PlaylistManager.tsx b/apps/wisekeep/apps/landing/src/components/admin/PlaylistManager.tsx similarity index 100% rename from apps/transcriber/apps/landing/src/components/admin/PlaylistManager.tsx rename to apps/wisekeep/apps/landing/src/components/admin/PlaylistManager.tsx diff --git a/apps/transcriber/apps/landing/src/components/admin/Settings.tsx b/apps/wisekeep/apps/landing/src/components/admin/Settings.tsx similarity index 100% rename from apps/transcriber/apps/landing/src/components/admin/Settings.tsx rename to apps/wisekeep/apps/landing/src/components/admin/Settings.tsx diff --git a/apps/transcriber/apps/landing/src/components/admin/TranscriptViewer.tsx b/apps/wisekeep/apps/landing/src/components/admin/TranscriptViewer.tsx similarity index 100% rename from apps/transcriber/apps/landing/src/components/admin/TranscriptViewer.tsx rename to apps/wisekeep/apps/landing/src/components/admin/TranscriptViewer.tsx diff --git a/apps/transcriber/apps/landing/src/components/speakers/QuoteCollection.astro b/apps/wisekeep/apps/landing/src/components/speakers/QuoteCollection.astro similarity index 100% rename from apps/transcriber/apps/landing/src/components/speakers/QuoteCollection.astro rename to apps/wisekeep/apps/landing/src/components/speakers/QuoteCollection.astro diff --git a/apps/transcriber/apps/landing/src/components/speakers/SpeakerHero.astro b/apps/wisekeep/apps/landing/src/components/speakers/SpeakerHero.astro similarity index 100% rename from apps/transcriber/apps/landing/src/components/speakers/SpeakerHero.astro rename to apps/wisekeep/apps/landing/src/components/speakers/SpeakerHero.astro diff --git a/apps/transcriber/apps/landing/src/components/speakers/SpeakerStats.astro b/apps/wisekeep/apps/landing/src/components/speakers/SpeakerStats.astro similarity index 100% rename from apps/transcriber/apps/landing/src/components/speakers/SpeakerStats.astro rename to apps/wisekeep/apps/landing/src/components/speakers/SpeakerStats.astro diff --git a/apps/transcriber/apps/landing/src/components/speakers/TalkGrid.astro b/apps/wisekeep/apps/landing/src/components/speakers/TalkGrid.astro similarity index 100% rename from apps/transcriber/apps/landing/src/components/speakers/TalkGrid.astro rename to apps/wisekeep/apps/landing/src/components/speakers/TalkGrid.astro diff --git a/apps/transcriber/apps/landing/src/content/config.ts b/apps/wisekeep/apps/landing/src/content/config.ts similarity index 100% rename from apps/transcriber/apps/landing/src/content/config.ts rename to apps/wisekeep/apps/landing/src/content/config.ts diff --git a/apps/transcriber/apps/landing/src/content/talks/rory-sutherland-perspective-is-everything.md b/apps/wisekeep/apps/landing/src/content/talks/rory-sutherland-perspective-is-everything.md similarity index 100% rename from apps/transcriber/apps/landing/src/content/talks/rory-sutherland-perspective-is-everything.md rename to apps/wisekeep/apps/landing/src/content/talks/rory-sutherland-perspective-is-everything.md diff --git a/apps/transcriber/apps/landing/src/content/talks/simon-sinek-leaders-eat-last.md b/apps/wisekeep/apps/landing/src/content/talks/simon-sinek-leaders-eat-last.md similarity index 100% rename from apps/transcriber/apps/landing/src/content/talks/simon-sinek-leaders-eat-last.md rename to apps/wisekeep/apps/landing/src/content/talks/simon-sinek-leaders-eat-last.md diff --git a/apps/transcriber/apps/landing/src/content/talks/simon-sinek-love-your-work.md b/apps/wisekeep/apps/landing/src/content/talks/simon-sinek-love-your-work.md similarity index 100% rename from apps/transcriber/apps/landing/src/content/talks/simon-sinek-love-your-work.md rename to apps/wisekeep/apps/landing/src/content/talks/simon-sinek-love-your-work.md diff --git a/apps/transcriber/apps/landing/src/content/talks/simon-sinek-millennials-in-the-workplace.md b/apps/wisekeep/apps/landing/src/content/talks/simon-sinek-millennials-in-the-workplace.md similarity index 100% rename from apps/transcriber/apps/landing/src/content/talks/simon-sinek-millennials-in-the-workplace.md rename to apps/wisekeep/apps/landing/src/content/talks/simon-sinek-millennials-in-the-workplace.md diff --git a/apps/transcriber/apps/landing/src/content/talks/simon-sinek-why-good-leaders-make-you-feel-safe.md b/apps/wisekeep/apps/landing/src/content/talks/simon-sinek-why-good-leaders-make-you-feel-safe.md similarity index 100% rename from apps/transcriber/apps/landing/src/content/talks/simon-sinek-why-good-leaders-make-you-feel-safe.md rename to apps/wisekeep/apps/landing/src/content/talks/simon-sinek-why-good-leaders-make-you-feel-safe.md diff --git a/apps/transcriber/apps/landing/src/env.d.ts b/apps/wisekeep/apps/landing/src/env.d.ts similarity index 100% rename from apps/transcriber/apps/landing/src/env.d.ts rename to apps/wisekeep/apps/landing/src/env.d.ts diff --git a/apps/transcriber/apps/landing/src/layouts/AdminLayout.astro b/apps/wisekeep/apps/landing/src/layouts/AdminLayout.astro similarity index 100% rename from apps/transcriber/apps/landing/src/layouts/AdminLayout.astro rename to apps/wisekeep/apps/landing/src/layouts/AdminLayout.astro diff --git a/apps/transcriber/apps/landing/src/layouts/BaseLayout.astro b/apps/wisekeep/apps/landing/src/layouts/BaseLayout.astro similarity index 100% rename from apps/transcriber/apps/landing/src/layouts/BaseLayout.astro rename to apps/wisekeep/apps/landing/src/layouts/BaseLayout.astro diff --git a/apps/transcriber/apps/landing/src/layouts/Layout.astro b/apps/wisekeep/apps/landing/src/layouts/Layout.astro similarity index 100% rename from apps/transcriber/apps/landing/src/layouts/Layout.astro rename to apps/wisekeep/apps/landing/src/layouts/Layout.astro diff --git a/apps/transcriber/apps/landing/src/pages/admin/index.astro b/apps/wisekeep/apps/landing/src/pages/admin/index.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/admin/index.astro rename to apps/wisekeep/apps/landing/src/pages/admin/index.astro diff --git a/apps/transcriber/apps/landing/src/pages/index.astro b/apps/wisekeep/apps/landing/src/pages/index.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/index.astro rename to apps/wisekeep/apps/landing/src/pages/index.astro diff --git a/apps/transcriber/apps/landing/src/pages/speakers/index.astro b/apps/wisekeep/apps/landing/src/pages/speakers/index.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/speakers/index.astro rename to apps/wisekeep/apps/landing/src/pages/speakers/index.astro diff --git a/apps/transcriber/apps/landing/src/pages/speakers/rory-sutherland.astro b/apps/wisekeep/apps/landing/src/pages/speakers/rory-sutherland.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/speakers/rory-sutherland.astro rename to apps/wisekeep/apps/landing/src/pages/speakers/rory-sutherland.astro diff --git a/apps/transcriber/apps/landing/src/pages/speakers/rory-sutherland/all.astro b/apps/wisekeep/apps/landing/src/pages/speakers/rory-sutherland/all.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/speakers/rory-sutherland/all.astro rename to apps/wisekeep/apps/landing/src/pages/speakers/rory-sutherland/all.astro diff --git a/apps/transcriber/apps/landing/src/pages/speakers/rory-sutherland/analyses.astro b/apps/wisekeep/apps/landing/src/pages/speakers/rory-sutherland/analyses.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/speakers/rory-sutherland/analyses.astro rename to apps/wisekeep/apps/landing/src/pages/speakers/rory-sutherland/analyses.astro diff --git a/apps/transcriber/apps/landing/src/pages/speakers/rory-sutherland/transcripts.astro b/apps/wisekeep/apps/landing/src/pages/speakers/rory-sutherland/transcripts.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/speakers/rory-sutherland/transcripts.astro rename to apps/wisekeep/apps/landing/src/pages/speakers/rory-sutherland/transcripts.astro diff --git a/apps/transcriber/apps/landing/src/pages/speakers/simon-sinek.astro b/apps/wisekeep/apps/landing/src/pages/speakers/simon-sinek.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/speakers/simon-sinek.astro rename to apps/wisekeep/apps/landing/src/pages/speakers/simon-sinek.astro diff --git a/apps/transcriber/apps/landing/src/pages/talks/[slug]-backup.astro b/apps/wisekeep/apps/landing/src/pages/talks/[slug]-backup.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/talks/[slug]-backup.astro rename to apps/wisekeep/apps/landing/src/pages/talks/[slug]-backup.astro diff --git a/apps/transcriber/apps/landing/src/pages/talks/[slug]-old.astro b/apps/wisekeep/apps/landing/src/pages/talks/[slug]-old.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/talks/[slug]-old.astro rename to apps/wisekeep/apps/landing/src/pages/talks/[slug]-old.astro diff --git a/apps/transcriber/apps/landing/src/pages/talks/[slug]-sidebar.astro b/apps/wisekeep/apps/landing/src/pages/talks/[slug]-sidebar.astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/talks/[slug]-sidebar.astro rename to apps/wisekeep/apps/landing/src/pages/talks/[slug]-sidebar.astro diff --git a/apps/transcriber/apps/landing/src/pages/talks/[slug].astro b/apps/wisekeep/apps/landing/src/pages/talks/[slug].astro similarity index 100% rename from apps/transcriber/apps/landing/src/pages/talks/[slug].astro rename to apps/wisekeep/apps/landing/src/pages/talks/[slug].astro diff --git a/apps/transcriber/apps/landing/src/styles/themes.css b/apps/wisekeep/apps/landing/src/styles/themes.css similarity index 100% rename from apps/transcriber/apps/landing/src/styles/themes.css rename to apps/wisekeep/apps/landing/src/styles/themes.css diff --git a/apps/transcriber/apps/landing/tailwind.config.mjs b/apps/wisekeep/apps/landing/tailwind.config.mjs similarity index 100% rename from apps/transcriber/apps/landing/tailwind.config.mjs rename to apps/wisekeep/apps/landing/tailwind.config.mjs diff --git a/apps/transcriber/apps/mobile/app.json b/apps/wisekeep/apps/mobile/app.json similarity index 100% rename from apps/transcriber/apps/mobile/app.json rename to apps/wisekeep/apps/mobile/app.json diff --git a/apps/transcriber/apps/mobile/app/(tabs)/_layout.tsx b/apps/wisekeep/apps/mobile/app/(tabs)/_layout.tsx similarity index 100% rename from apps/transcriber/apps/mobile/app/(tabs)/_layout.tsx rename to apps/wisekeep/apps/mobile/app/(tabs)/_layout.tsx diff --git a/apps/transcriber/apps/mobile/app/(tabs)/index.tsx b/apps/wisekeep/apps/mobile/app/(tabs)/index.tsx similarity index 100% rename from apps/transcriber/apps/mobile/app/(tabs)/index.tsx rename to apps/wisekeep/apps/mobile/app/(tabs)/index.tsx diff --git a/apps/transcriber/apps/mobile/app/(tabs)/settings.tsx b/apps/wisekeep/apps/mobile/app/(tabs)/settings.tsx similarity index 100% rename from apps/transcriber/apps/mobile/app/(tabs)/settings.tsx rename to apps/wisekeep/apps/mobile/app/(tabs)/settings.tsx diff --git a/apps/transcriber/apps/mobile/app/(tabs)/transcribe.tsx b/apps/wisekeep/apps/mobile/app/(tabs)/transcribe.tsx similarity index 100% rename from apps/transcriber/apps/mobile/app/(tabs)/transcribe.tsx rename to apps/wisekeep/apps/mobile/app/(tabs)/transcribe.tsx diff --git a/apps/transcriber/apps/mobile/app/(tabs)/transcripts.tsx b/apps/wisekeep/apps/mobile/app/(tabs)/transcripts.tsx similarity index 100% rename from apps/transcriber/apps/mobile/app/(tabs)/transcripts.tsx rename to apps/wisekeep/apps/mobile/app/(tabs)/transcripts.tsx diff --git a/apps/transcriber/apps/mobile/app/_layout.tsx b/apps/wisekeep/apps/mobile/app/_layout.tsx similarity index 100% rename from apps/transcriber/apps/mobile/app/_layout.tsx rename to apps/wisekeep/apps/mobile/app/_layout.tsx diff --git a/apps/transcriber/apps/mobile/babel.config.js b/apps/wisekeep/apps/mobile/babel.config.js similarity index 100% rename from apps/transcriber/apps/mobile/babel.config.js rename to apps/wisekeep/apps/mobile/babel.config.js diff --git a/apps/transcriber/apps/mobile/package.json b/apps/wisekeep/apps/mobile/package.json similarity index 96% rename from apps/transcriber/apps/mobile/package.json rename to apps/wisekeep/apps/mobile/package.json index fe4f15cf1..2fe92eba6 100644 --- a/apps/transcriber/apps/mobile/package.json +++ b/apps/wisekeep/apps/mobile/package.json @@ -1,5 +1,5 @@ { - "name": "@transcriber/mobile", + "name": "@wisekeep/mobile", "version": "1.0.0", "private": true, "main": "expo-router/entry", diff --git a/apps/transcriber/apps/mobile/src/services/api.ts b/apps/wisekeep/apps/mobile/src/services/api.ts similarity index 100% rename from apps/transcriber/apps/mobile/src/services/api.ts rename to apps/wisekeep/apps/mobile/src/services/api.ts diff --git a/apps/transcriber/apps/mobile/src/stores/jobs.ts b/apps/wisekeep/apps/mobile/src/stores/jobs.ts similarity index 100% rename from apps/transcriber/apps/mobile/src/stores/jobs.ts rename to apps/wisekeep/apps/mobile/src/stores/jobs.ts diff --git a/apps/transcriber/apps/mobile/tsconfig.json b/apps/wisekeep/apps/mobile/tsconfig.json similarity index 100% rename from apps/transcriber/apps/mobile/tsconfig.json rename to apps/wisekeep/apps/mobile/tsconfig.json diff --git a/apps/transcriber/apps/web/.env.example b/apps/wisekeep/apps/web/.env.example similarity index 100% rename from apps/transcriber/apps/web/.env.example rename to apps/wisekeep/apps/web/.env.example diff --git a/apps/transcriber/apps/web/package.json b/apps/wisekeep/apps/web/package.json similarity index 96% rename from apps/transcriber/apps/web/package.json rename to apps/wisekeep/apps/web/package.json index 32dc0d98e..1cec20d46 100644 --- a/apps/transcriber/apps/web/package.json +++ b/apps/wisekeep/apps/web/package.json @@ -1,5 +1,5 @@ { - "name": "@transcriber/web", + "name": "@wisekeep/web", "version": "1.0.0", "private": true, "scripts": { diff --git a/apps/transcriber/apps/web/postcss.config.js b/apps/wisekeep/apps/web/postcss.config.js similarity index 100% rename from apps/transcriber/apps/web/postcss.config.js rename to apps/wisekeep/apps/web/postcss.config.js diff --git a/apps/transcriber/apps/web/src/app.css b/apps/wisekeep/apps/web/src/app.css similarity index 100% rename from apps/transcriber/apps/web/src/app.css rename to apps/wisekeep/apps/web/src/app.css diff --git a/apps/transcriber/apps/web/src/app.d.ts b/apps/wisekeep/apps/web/src/app.d.ts similarity index 100% rename from apps/transcriber/apps/web/src/app.d.ts rename to apps/wisekeep/apps/web/src/app.d.ts diff --git a/apps/transcriber/apps/web/src/app.html b/apps/wisekeep/apps/web/src/app.html similarity index 100% rename from apps/transcriber/apps/web/src/app.html rename to apps/wisekeep/apps/web/src/app.html diff --git a/apps/transcriber/apps/web/src/lib/api/client.ts b/apps/wisekeep/apps/web/src/lib/api/client.ts similarity index 100% rename from apps/transcriber/apps/web/src/lib/api/client.ts rename to apps/wisekeep/apps/web/src/lib/api/client.ts diff --git a/apps/transcriber/apps/web/src/lib/stores/jobs.ts b/apps/wisekeep/apps/web/src/lib/stores/jobs.ts similarity index 100% rename from apps/transcriber/apps/web/src/lib/stores/jobs.ts rename to apps/wisekeep/apps/web/src/lib/stores/jobs.ts diff --git a/apps/transcriber/apps/web/src/routes/+layout.svelte b/apps/wisekeep/apps/web/src/routes/+layout.svelte similarity index 100% rename from apps/transcriber/apps/web/src/routes/+layout.svelte rename to apps/wisekeep/apps/web/src/routes/+layout.svelte diff --git a/apps/transcriber/apps/web/src/routes/+page.svelte b/apps/wisekeep/apps/web/src/routes/+page.svelte similarity index 100% rename from apps/transcriber/apps/web/src/routes/+page.svelte rename to apps/wisekeep/apps/web/src/routes/+page.svelte diff --git a/apps/transcriber/apps/web/src/routes/playlists/+page.svelte b/apps/wisekeep/apps/web/src/routes/playlists/+page.svelte similarity index 100% rename from apps/transcriber/apps/web/src/routes/playlists/+page.svelte rename to apps/wisekeep/apps/web/src/routes/playlists/+page.svelte diff --git a/apps/transcriber/apps/web/src/routes/transcribe/+page.svelte b/apps/wisekeep/apps/web/src/routes/transcribe/+page.svelte similarity index 100% rename from apps/transcriber/apps/web/src/routes/transcribe/+page.svelte rename to apps/wisekeep/apps/web/src/routes/transcribe/+page.svelte diff --git a/apps/transcriber/apps/web/src/routes/transcripts/+page.svelte b/apps/wisekeep/apps/web/src/routes/transcripts/+page.svelte similarity index 100% rename from apps/transcriber/apps/web/src/routes/transcripts/+page.svelte rename to apps/wisekeep/apps/web/src/routes/transcripts/+page.svelte diff --git a/apps/transcriber/apps/web/svelte.config.js b/apps/wisekeep/apps/web/svelte.config.js similarity index 100% rename from apps/transcriber/apps/web/svelte.config.js rename to apps/wisekeep/apps/web/svelte.config.js diff --git a/apps/transcriber/apps/web/tailwind.config.js b/apps/wisekeep/apps/web/tailwind.config.js similarity index 100% rename from apps/transcriber/apps/web/tailwind.config.js rename to apps/wisekeep/apps/web/tailwind.config.js diff --git a/apps/transcriber/apps/web/tsconfig.json b/apps/wisekeep/apps/web/tsconfig.json similarity index 100% rename from apps/transcriber/apps/web/tsconfig.json rename to apps/wisekeep/apps/web/tsconfig.json diff --git a/apps/transcriber/apps/web/vite.config.ts b/apps/wisekeep/apps/web/vite.config.ts similarity index 100% rename from apps/transcriber/apps/web/vite.config.ts rename to apps/wisekeep/apps/web/vite.config.ts diff --git a/apps/transcriber/legacy/admin.html b/apps/wisekeep/legacy/admin.html similarity index 100% rename from apps/transcriber/legacy/admin.html rename to apps/wisekeep/legacy/admin.html diff --git a/apps/transcriber/legacy/api_server.py b/apps/wisekeep/legacy/api_server.py similarity index 100% rename from apps/transcriber/legacy/api_server.py rename to apps/wisekeep/legacy/api_server.py diff --git a/apps/transcriber/legacy/config.json b/apps/wisekeep/legacy/config.json similarity index 100% rename from apps/transcriber/legacy/config.json rename to apps/wisekeep/legacy/config.json diff --git a/apps/transcriber/legacy/quick_transcribe.sh b/apps/wisekeep/legacy/quick_transcribe.sh similarity index 100% rename from apps/transcriber/legacy/quick_transcribe.sh rename to apps/wisekeep/legacy/quick_transcribe.sh diff --git a/apps/transcriber/legacy/requirements.txt b/apps/wisekeep/legacy/requirements.txt similarity index 100% rename from apps/transcriber/legacy/requirements.txt rename to apps/wisekeep/legacy/requirements.txt diff --git a/apps/transcriber/legacy/start.sh b/apps/wisekeep/legacy/start.sh similarity index 100% rename from apps/transcriber/legacy/start.sh rename to apps/wisekeep/legacy/start.sh diff --git a/apps/transcriber/legacy/transcriber.py b/apps/wisekeep/legacy/transcriber.py similarity index 100% rename from apps/transcriber/legacy/transcriber.py rename to apps/wisekeep/legacy/transcriber.py diff --git a/apps/transcriber/legacy/transcriber_v2.py b/apps/wisekeep/legacy/transcriber_v2.py similarity index 100% rename from apps/transcriber/legacy/transcriber_v2.py rename to apps/wisekeep/legacy/transcriber_v2.py diff --git a/apps/transcriber/legacy/transcriber_v3.py b/apps/wisekeep/legacy/transcriber_v3.py similarity index 100% rename from apps/transcriber/legacy/transcriber_v3.py rename to apps/wisekeep/legacy/transcriber_v3.py diff --git a/apps/transcriber/legacy/transcriber_v4_parallel.py b/apps/wisekeep/legacy/transcriber_v4_parallel.py similarity index 100% rename from apps/transcriber/legacy/transcriber_v4_parallel.py rename to apps/wisekeep/legacy/transcriber_v4_parallel.py diff --git a/apps/transcriber/package.json b/apps/wisekeep/package.json similarity index 50% rename from apps/transcriber/package.json rename to apps/wisekeep/package.json index d071fee01..2a7487d25 100644 --- a/apps/transcriber/package.json +++ b/apps/wisekeep/package.json @@ -1,14 +1,14 @@ { - "name": "transcriber", + "name": "wisekeep", "version": "1.0.0", "private": true, - "description": "YouTube Transcriber - AI-powered video transcription", + "description": "Wisekeep - AI-powered wisdom extraction from video content", "scripts": { "dev": "turbo run dev", - "dev:backend": "pnpm --filter @transcriber/backend dev", - "dev:web": "pnpm --filter @transcriber/web dev", - "dev:landing": "pnpm --filter @transcriber/landing dev", - "dev:mobile": "pnpm --filter @transcriber/mobile dev", + "dev:backend": "pnpm --filter @wisekeep/backend dev", + "dev:web": "pnpm --filter @wisekeep/web dev", + "dev:landing": "pnpm --filter @wisekeep/landing dev", + "dev:mobile": "pnpm --filter @wisekeep/mobile dev", "build": "turbo run build", "lint": "turbo run lint", "type-check": "turbo run type-check", diff --git a/apps/transcriber/packages/shared-types/package.json b/apps/wisekeep/packages/shared-types/package.json similarity index 84% rename from apps/transcriber/packages/shared-types/package.json rename to apps/wisekeep/packages/shared-types/package.json index 7ab8730da..4ff99339b 100644 --- a/apps/transcriber/packages/shared-types/package.json +++ b/apps/wisekeep/packages/shared-types/package.json @@ -1,5 +1,5 @@ { - "name": "@transcriber/shared-types", + "name": "@wisekeep/shared-types", "version": "1.0.0", "private": true, "main": "./src/index.ts", diff --git a/apps/transcriber/packages/shared-types/src/index.ts b/apps/wisekeep/packages/shared-types/src/index.ts similarity index 100% rename from apps/transcriber/packages/shared-types/src/index.ts rename to apps/wisekeep/packages/shared-types/src/index.ts diff --git a/apps/transcriber/packages/shared-types/tsconfig.json b/apps/wisekeep/packages/shared-types/tsconfig.json similarity index 100% rename from apps/transcriber/packages/shared-types/tsconfig.json rename to apps/wisekeep/packages/shared-types/tsconfig.json diff --git a/apps/transcriber/tsconfig.json b/apps/wisekeep/tsconfig.json similarity index 100% rename from apps/transcriber/tsconfig.json rename to apps/wisekeep/tsconfig.json