forked from open-webui/open-webui
docs: 📝 requirements
This commit is contained in:
parent
ebcd985489
commit
21e5fd9f08
1 changed files with 10 additions and 4 deletions
14
README.md
14
README.md
|
@ -198,9 +198,15 @@ While we strongly recommend using our convenient Docker container installation f
|
||||||
|
|
||||||
The Ollama Web UI consists of two primary components: the frontend and the backend (which serves as a reverse proxy, handling static frontend files, and additional features). Both need to be running concurrently for the development environment.
|
The Ollama Web UI consists of two primary components: the frontend and the backend (which serves as a reverse proxy, handling static frontend files, and additional features). Both need to be running concurrently for the development environment.
|
||||||
|
|
||||||
**Warning: Backend Dependency for Proper Functionality**
|
> [!IMPORTANT]
|
||||||
|
> Backend required for proper functionality
|
||||||
|
|
||||||
### TL;DR 🚀
|
### Requirements 📦
|
||||||
|
|
||||||
|
- 🐰 Bun >= 1.0.0
|
||||||
|
- 🐍 Python >= 3.11
|
||||||
|
|
||||||
|
### Build and Install 🛠️
|
||||||
|
|
||||||
Run the following commands to install:
|
Run the following commands to install:
|
||||||
|
|
||||||
|
@ -212,8 +218,8 @@ cd ollama-webui/
|
||||||
cp -RPp example.env .env
|
cp -RPp example.env .env
|
||||||
|
|
||||||
# Building Frontend
|
# Building Frontend
|
||||||
npm i
|
bun install
|
||||||
npm run build
|
bun run build
|
||||||
|
|
||||||
# Serving Frontend with the Backend
|
# Serving Frontend with the Backend
|
||||||
cd ./backend
|
cd ./backend
|
||||||
|
|
Loading…
Reference in a new issue