The open-source CapCut alternative
Go to file
google-labs-jules[bot] 21bdfb4e14 feat: Add Docker configuration for local development
This commit introduces Docker support for the OpenCut application.

- Adds a `Dockerfile` for the `apps/web` Next.js application, using a multi-stage build with `bun`.
- Updates `docker-compose.yaml` to include the `web` service, along with existing `db` (PostgreSQL) and `redis` services.
- Configures dependencies between services and sets up environment variables.
- Creates an `apps/web/.env` file based on the example, tailored for the Docker environment.

These changes allow developers to easily set up and run the entire application stack using Docker Compose.
2025-06-23 16:15:46 +00:00
.github fix: package json commands 2025-06-23 13:40:14 +03:00
apps/web feat: Add Docker configuration for local development 2025-06-23 16:15:46 +00: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 docs: update readme, add project structure and bun commands 2025-06-23 15:33:06 +07: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 feat: Add Docker configuration for local development 2025-06-23 16:15:46 +00: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

Contributing

License

MIT Details