mirror of
https://github.com/open-webui/docs
synced 2025-06-16 11:28:36 +00:00
185 lines
5.1 KiB
Plaintext
185 lines
5.1 KiB
Plaintext
---
|
|
sidebar_position: 6
|
|
title: "🛠️ Development Guide"
|
|
---
|
|
import { TopBanners } from "@site/src/components/TopBanners";
|
|
|
|
<TopBanners />
|
|
|
|
Welcome to the Open WebUI Development Setup Guide! 🌟 Whether you're a novice or a veteran in the software development world, this guide is designed to assist you in establishing a functional local development environment for both the frontend and backend components of Open WebUI. Let's get started and set up your development environment swiftly! 🚀
|
|
|
|
## System Requirements
|
|
|
|
Before diving into the setup, make sure your system meets the following requirements:
|
|
- **Operating System**: Linux (WSL) or macOS (Instructions provided here specifically cater to these operating systems)
|
|
- **Python Version**: Python 3.11
|
|
|
|
## 🐧 Linux/macOS Setup Guide
|
|
|
|
This section provides a step-by-step process to get your development environment ready on Linux (WSL) or macOS platforms.
|
|
|
|
### 📡 Cloning the Repository
|
|
|
|
First, you'll need to clone the Open WebUI repository and switch to the directory:
|
|
|
|
```sh
|
|
git clone https://github.com/open-webui/open-webui.git
|
|
cd open-webui
|
|
```
|
|
|
|
### 🖥️ Frontend Server Setup
|
|
|
|
To set up the frontend server, follow these instructions:
|
|
|
|
1. **Environment Configuration**:
|
|
Duplicate the environment configuration file:
|
|
|
|
```sh
|
|
cp -RPp .env.example .env
|
|
```
|
|
|
|
2. **Install Dependencies**:
|
|
Run the following commands to install necessary dependencies:
|
|
|
|
```sh
|
|
npm install
|
|
```
|
|
|
|
3. **Launch the Server**:
|
|
Start the server with:
|
|
|
|
```sh
|
|
npm run dev
|
|
```
|
|
|
|
🌐 The frontend server will be available at: http://localhost:5173. Please note that for the frontend server to function correctly, the backend server should be running concurrently.
|
|
|
|
### 🖥️ Backend Server Setup
|
|
|
|
Setting up the backend server involves a few more steps, Python 3.11 is required for Open WebUI:
|
|
|
|
1. **Change Directory**:
|
|
Open a new terminal window and navigate to the backend directory:
|
|
|
|
```sh
|
|
cd open-webui/backend
|
|
```
|
|
|
|
2. **Python Environment Setup** (Using Conda Recommended):
|
|
- Create and activate a Conda environment with Python 3.11:
|
|
|
|
```sh
|
|
conda create --name open-webui python=3.11
|
|
conda activate open-webui
|
|
```
|
|
|
|
3. **Install Backend Dependencies**:
|
|
Install all the required Python libraries:
|
|
|
|
```sh
|
|
pip install -r requirements.txt -U
|
|
```
|
|
|
|
4. **Start the Backend Application**:
|
|
Launch the backend application with:
|
|
|
|
```sh
|
|
sh dev.sh
|
|
```
|
|
|
|
📄 Access the backend API documentation at: http://localhost:8080/docs. The backend supports hot reloading, making your development process smoother by automatically reflecting changes.
|
|
|
|
That's it! You now have both the frontend and backend servers running. Explore the API documentation and start developing features for Open WebUI. Happy coding! 🎉
|
|
|
|
## 🐳 Running in a Docker Container
|
|
|
|
For those who prefer using Docker, here's how you can set things up:
|
|
|
|
1. **Initialize Configuration:**
|
|
Assuming you have already cloned the repository and created a `.env` file, create a new file named `compose-dev.yaml`. This configuration uses Docker Compose to ease the development setup.
|
|
|
|
```yaml
|
|
name: open-webui-dev
|
|
|
|
services:
|
|
frontend:
|
|
build:
|
|
context: .
|
|
target: build
|
|
command: ["npm", "run", "dev"]
|
|
depends_on:
|
|
- backend
|
|
extra_hosts:
|
|
- host.docker.internal:host-gateway
|
|
ports:
|
|
- "3000:5173"
|
|
develop:
|
|
watch:
|
|
path: ./src
|
|
action: sync
|
|
|
|
backend:
|
|
build:
|
|
context: .
|
|
target: base
|
|
command: ["bash", "dev.sh"]
|
|
env_file: ".env"
|
|
environment:
|
|
- ENV=dev
|
|
- WEBUI_AUTH=False
|
|
volumes:
|
|
- data:/app/backend/data
|
|
extra_hosts:
|
|
- host.docker.internal:host-gateway
|
|
ports:
|
|
- "8080:8080"
|
|
restart: always
|
|
develop:
|
|
watch:
|
|
path: ./backend
|
|
action: sync
|
|
|
|
volumes:
|
|
data: {}
|
|
|
|
```
|
|
|
|
2. **Start Development Containers:**
|
|
|
|
```sh
|
|
docker compose -f compose-dev.yaml up --watch
|
|
```
|
|
|
|
This command will start the frontend and backend servers in hot reload mode. Changes in your source files will trigger an automatic refresh. The web app will be available at http://localhost:3000 and Backend API docs at http://localhost:8080/docs.
|
|
|
|
3. **Stopping the Containers:**
|
|
|
|
To stop the containers, you can use:
|
|
|
|
```sh
|
|
docker compose -f compose-dev.yaml down
|
|
```
|
|
|
|
### 🔄 Integration with Pipelines
|
|
|
|
If your development involves [Pipelines](https://docs.openwebui.com/pipelines/), you can enhance your Docker setup:
|
|
|
|
```yaml
|
|
services:
|
|
pipelines:
|
|
ports:
|
|
- "9099:9099"
|
|
volumes:
|
|
- ./pipelines:/app/pipelines
|
|
extra_hosts:
|
|
- host.docker.internal:host-gateway
|
|
restart: always
|
|
```
|
|
|
|
This setup involves mounting the `pipelines` directory to ensure any changes reflect immediately, maintaining high development agility.
|
|
|
|
:::note
|
|
This configuration uses volume bind-mounts. Learn more about how they differ from named volumes [here](https://docs.docker.com/storage/bind-mounts/).
|
|
:::
|
|
|
|
Through these setup steps, both new and experienced contributors can seamlessly integrate into the development workflow of Open WebUI. Happy coding! 🎉 |