> ## Documentation Index
> Fetch the complete documentation index at: https://docs.videodb.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Setup Director

> Install and configure the Director framework locally to build custom video agents and workflows for your applications.

* **Clone the repository:**

Begin by cloning the **Director** repository and navigating to the project directory:

```bash theme={null}
git clone https://github.com/video-db/Director.git
cd Director
```

* **Run the setup script:**

Execute the setup script to install all necessary dependencies:

```bash theme={null}
./setup.sh
```

* **Run the Application**

You can start both the backend and frontend servers with:

```bash theme={null}
make run
```

If you want to run them separately:

* **Backend only:** make run-be (Runs at [http://127.0.0.1:8000](http://127.0.0.1:8000))
* **Frontend only:** make run-fe (Runs at [http://127.0.0.1:8080](http://127.0.0.1:8080))

You are now ready to begin creating an agent in VideoDB Director!
