The open-source CapCut alternative
Go to file
iza 704f620c92
Merge pull request #31 from YaoSiQian/patch-1
Fix Docker stuff (with README guidance)
2025-06-24 07:50:06 +03:00
.github docs: enhance contributing guidelines with detailed setup instructions and environment variable configuration 2025-06-24 01:55:40 +02:00
apps/web Merge branch 'main' into patch-1 2025-06-24 07:49:37 +03:00
.cursorignore chore: add .cursorignore file to exclude specific files from cursor tracking 2025-06-24 01:48:06 +02:00
.gitignore Merge pull request #6 from Sompalkar/fix/timeline-clip-deletion 2025-06-23 13:24:18 +03:00
LICENSE change app name from AppCut to OpenCut 2025-06-22 22:22:08 +02:00
README.md Merge branch 'main' into patch-1 2025-06-24 07:49:37 +03:00
biome.json feat: added biome, fixed input hydration issue from uncontrolled input being used as controlled input 2025-06-23 08:55:55 +03:00
docker-compose.yaml fix(docker): web service 2025-06-24 05:00:34 +08:00

README.md

OpenCut (prev AppCut)

A free, open-source video editor for web, desktop, and mobile.

Why?

  • Privacy: Your videos stay on your device
  • Free features: Every basic feature of CapCut is paywalled now
  • Simple: People want editors that are easy to use - CapCut proved that

Features

  • Timeline-based editing
  • Multi-track support
  • Real-time preview
  • No watermarks or subscriptions

Project Structure

  • apps/web/ Main Next.js web application
  • src/components/ UI and editor components
  • src/hooks/ Custom React hooks
  • src/lib/ Utility and API logic
  • src/stores/ State management (Zustand, etc.)
  • src/types/ TypeScript types

Getting Started

  1. Clone the repository:

    git clone <repo-url>
    cd OpenCut
    
  2. Install dependencies:

    cd apps/web
    npm install
    # or, with Bun
    bun install
    
  3. Run the development server:

    npm run dev
    # or, with Bun
    bun run dev
    
  4. Open in browser:

    Visit http://localhost:3000

Run with Docker

  1. Prepare environment variables:

    Edit docker-compose.yaml

  2. Build and run:

    docker-compose up -d --build
    
  3. (Optional) Migrate database:

    docker-compose exec web bun run db:migrate
    
  4. Open in browser:

    Visit http://localhost:3000

Contributing

Visit CONTRIBUTING.md

We welcome contributions! Please see our Contributing Guide for detailed setup instructions and development guidelines.

Quick start for contributors:

  • Fork the repo and clone locally
  • Follow the setup instructions in CONTRIBUTING.md
  • Create a feature branch and submit a PR

License

MIT LICENSE