Skip to content

Latest commit

 

History

History
95 lines (70 loc) · 3.32 KB

quickstart.mdx

File metadata and controls

95 lines (70 loc) · 3.32 KB
title description icon
Quickstart
How to deploy Onyx on your local machine
bolt

Requirements

- git
- Docker with compose (docker version >= 1.13.0)
- System requirements found [here](https://docs.onyx.app/resourcing)

Setup

The most common source of issues is under-resourcing. Before beginning, check the system requirements [here](https://docs.onyx.app/resourcing).
1. Clone the [Onyx](https://github.com/onyx-dot-app/onyx) repo:
```bash
git clone https://github.com/onyx-dot-app/onyx.git
```

2. Navigate to **onyx/deployment/docker_compose**
```bash
cd onyx/deployment/docker_compose
```

3. (Optional) [configure Onyx](/configuration_guide)

4. Bring up your docker engine and run:
    - To pull images from DockerHub and run Onyx:
    ```bash
    docker compose -f docker-compose.dev.yml -p onyx-stack up -d --pull always --force-recreate
    ```
    - Alternatively, to build the containers from source and start Onyx, run:
     ```bash
    docker compose -f docker-compose.dev.yml -p onyx-stack up -d --build --force-recreate
    ```
    - This may take 15+ minutes depending on your internet speed.
        - Additionally, once the images have been pulled / built, the initial startup of the `api_server`
        may take some time (we download embedding models from HuggingFace to power the search). If you see
        `This site can’t be reached` in your browser despite all containers being up and running,
        check the `api_server` logs and make sure you see `Application startup complete`.
        - If you see `Killed` in the logs, you may need to increase the amount of memory given to Docker.
        For recommendations, check the system requirements [here](https://docs.onyx.app/resourcing).
These commands are also used to redeploy if any **.env** variables are updated
5. Onyx will now be running on http://localhost:3000.

Generative AI API Key

Note: On the initial visit, Onyx will prompt for an OpenAI API key.

You can get an OpenAI API key at: https://platform.openai.com/account/api-keys

You can also replace OpenAI with a model provider of your choice, see [here](https://docs.onyx.app/gen_ai_configs/overview) for more info

Indexing Documents

This quickstart guide will index a publicly accessible website as this requires no additional authorization setup

1. Navigate to the top right of Onyx's home screen and select **Admin Panel**

AdminPanel

2. In the Web Connector dashboard, pick any base URL to index.
    - This will index all pages under that base URL that is reachable from hyperlinks.
    - You can check the indexing status page to monitor the progress.

OnyxWebConnector

3. After the pages are indexed, you can now navigate back to the homepage and start asking questions and getting
answers! 🥳

OnyxSampleQA

Shutting Down

docker compose -f docker-compose.dev.yml -p onyx-stack down
add `-v` at the end to additionally delete the volumes (containing users and indexed documents){" "}