watch-finished-turbo

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

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