watch-finished-turbo

Timothy Pomeroy c3f65becaf Update package README files with project-specific documentation 1 miesiąc temu
.vscode 7b7c4f0ac9 Initial commit 1 miesiąc temu
apps b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 miesiąc temu
data b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 miesiąc temu
docs b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 miesiąc temu
packages c3f65becaf Update package README files with project-specific documentation 1 miesiąc temu
.cursorrules c53cbe19a2 Add .cursorrules file with comprehensive repository structure documentation for AI assistants 1 miesiąc temu
.gitignore 7b7c4f0ac9 Initial commit 1 miesiąc temu
.npmrc 7b7c4f0ac9 Initial commit 1 miesiąc temu
Dockerfile b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 miesiąc temu
README.md 3b3d8d28ae Simplify main README to point to detailed docs in apps/*/README.md and docs/ 1 miesiąc temu
docker-compose.yml 7b7c4f0ac9 Initial commit 1 miesiąc temu
package.json 7b7c4f0ac9 Initial commit 1 miesiąc temu
pnpm-lock.yaml b63ce13163 Update READMEs, add data README, remove legacy code, move dev notes to docs 1 miesiąc temu
pnpm-workspace.yaml 7b7c4f0ac9 Initial commit 1 miesiąc temu
turbo.json 7b7c4f0ac9 Initial commit 1 miesiąc temu

README.md

Watch Finished Turbo

A modern, full-stack video processing system built with Turborepo. Automatically monitors directories, processes videos with HandBrake, and provides a complete web interface for management.

Quick Start

# Install dependencies
pnpm install

# Start all services (web + API)
pnpm run dev

# Or start individually
pnpm run web      # Web interface on :3000
pnpm run service  # API server on :3001
pnpm run cli      # Interactive CLI

Documentation

For detailed information, see:

Project Structure

├── apps/
│   ├── web/          # Next.js web interface
│   ├── service/      # NestJS API server
│   └── cli/          # Command-line interface
├── packages/         # Shared configurations
├── data/             # SQLite database
├── docs/             # Documentation
└── scripts/          # Build scripts