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

# Quick Start

This quickstart guide will walk you through the process to ensure you’re up and running in no time.

<Note> Ensure [Python](https://www.python.org/downloads/) , [Poetry](https://python-poetry.org/), and [Git](https://git-scm.com/downloads) are installed on your system. </Note>

<Steps>
  <Step title="Clone Repository" icon="clone" iconType="duotone">
    ```bash theme={null}
    git clone https://www.github.com/qreater/tartarus.git
    ```
  </Step>

  <Step title="Navigate to the directory" icon="folder" iconType="duotone">
    ```bash theme={null}
    cd tartarus/backend
    ```
  </Step>

  <Step title="Install Dependencies" icon="download" iconType="duotone">
    ```bash theme={null}
    poetry install
    ```
  </Step>

  <Step title="Spin-up Server" icon="rocket" iconType="duotone">
    ```bash theme={null}
    poetry run uvicorn main:app
    ```
  </Step>
</Steps>

<Info> Once the steps are done, the API Docs can be viewed [here](http://localhost:8000/docs) </Info>

To know more about Docker Deployment set up, check it out [here](/deployment/docker)

Check out our library [here](/library/introduction)
