Skip to content

Commit

Permalink
quickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmoffet committed Jul 24, 2024
1 parent bf65a58 commit 5f2cb8e
Showing 1 changed file with 32 additions and 6 deletions.
38 changes: 32 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,39 @@
# Quickstart

Run this from the root of the repo (don't forget the .env file):
1. **Ensure Python 3.11 is installed**:

```bash
pip install -r ./backend/requirements.txt
npm install && npm run build && ./backend/start.sh
```
- You can check your Python version by running:
```bash
python3.11 --version
```
- If Python 3.11 is not installed, you will need to install it first.

2. **Navigate to your project directory** (where you want the virtual environment to be created).

3. **Create the virtual environment**:

- Run:
```bash
python3.11 -m venv .env
```

4. **Activate the virtual environment**:

- Run:
```bash
source .env/bin/activate
```

5. **Install deps, build and run**:

- Run:

```bash
pip install -r ./backend/requirements.txt
npm install && npm run build && ./backend/start.sh
```

It should kick off two servers from /backend and /backend/pipelines at 8080 and 9099, respectively.
- It should kick off two servers from /backend and /backend/pipelines at 8080 and 9099, respectively.

## Open WebUI (Formerly Ollama WebUI) 👋

Expand Down

0 comments on commit 5f2cb8e

Please sign in to comment.