packages/docs/docs/editor-starter/setup.mdx
After obtaining the Editor Starter, you should fork it to your own account.
Once you have forked the repository, you can clone it to your local machine, and install the dependencies by doing the following:
If you are starting a new project, you can stay in your repository and install dependencies:
npm i
Run the app using:
npm run dev
The app may be deployed like any other React Router 7 app, for example by connecting the repository to Vercel.
If you already have a project, you can copy the src/editor folder into your existing project.
The following instructions were tested on a new Next.js project with Tailwind and TypeScript enabled, but it should work with any React framework.
```ts title="page/app.tsx"
import { Editor } from "./editor/editor";
export default function Home() {
return <Editor />;
}
```
If the user drops in any assets, you can configure them to be uploaded to an S3 bucket.
See Asset uploads for more information.
See Rendering for how to setup the Remotion Lambda integration.
You can setup AI transcription for audio and video assets. See Captioning on how to set it up.