Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.21 KB

getting-started.md

File metadata and controls

47 lines (31 loc) · 1.21 KB

Getting Started

This guide will walk you through the quickest way to get your Owl project up and running.

Prerequisites

Before you start, make sure you have the following installed:

Setup

  1. Clone the Owl repository, install dependencies and activate your virtual environment:
git clone https://github.com/OwlAIProject/Owl.git
cd Owl
poetry install
poetry shell
  1. Install configuration files:

Run the owl setup command and follow the prompts to create configuration files in the project's root directory.

owl setup
  1. Run server:

Start the server using the following command:

owl serve --web

You can now access your Owl server at http://localhost:3000. Note, you'll need to proceed with the next steps below before you can use Owl's web interface.

Next steps

To further configure your Owl project, see the Server Configuration guide.