File size: 514 Bytes
91eecda 1b10281 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | git clone https://github.com/open-webui/open-webui.git /workspace/app
cd open-webui/
# Copying required .env file
cp -RPp .env.example .env
# Start frontend server
npm install
npm run dev
cd ./backend
# Optional: To install using Conda as your development environment, follow these instructions:
# Create and activate a Conda environment
conda create --name open-webui-env python=3.11
conda activate open-webui-env
# Install dependencies
pip install -r requirements.txt -U
# Start the application
bash dev.sh |