> For the complete documentation index, see [llms.txt](https://docs.theopenpresenter.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.theopenpresenter.com/development/quickstart.md).

# Quickstart

The best way to understand the project is to just try it!

The project is open-source and we are looking for contributors.

{% embed url="<https://github.com/Vija02/TheOpenPresenter>" %}

### Prerequisites

* Node LTS

Then, simply run these commands:

```bash
git clone git@github.com:Vija02/TheOpenPresenter.git

cd TheOpenPresenter

# Enable corepack & install yarn
# Note: You may need to run this as admin in Windows
corepack enable
corepack use yarn

# Setup deps & local DB
yarn && yarn local-dev

# On another terminal, start the server
yarn dev
```

You should then be able to access the project through <http://localhost:5678>

#### Future runs

For future runs, you only need to run `yarn local-dev` to run the DB, and `yarn dev`  to run the server itself.

`yarn dev` might take a long time to resolve since it's watching every single package in the repo. If you know which file you're modifying, you can watch only that package by going to its folder and running `yarn dev` there.

{% hint style="info" %}
We're constantly improving the development experience of TheOpenPresenter. If these steps doesn't work, please let us know!
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.theopenpresenter.com/development/quickstart.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
