doc: node as default mode of installation

This commit is contained in:
Timothy J. Baek 2024-01-04 20:01:16 -08:00
parent 1a93191259
commit db4bc1ecbf
1 changed files with 7 additions and 3 deletions

View File

@ -217,9 +217,13 @@ cd ollama-webui/
# Copying required .env file
cp -RPp example.env .env
# Building Frontend
bun install
bun run build
# Building Frontend Using Node
npm i
npm run build
# or Building Frontend Using Bun
# bun install
# bun run build
# Serving Frontend with the Backend
cd ./backend