소스 검색

doc: node as default mode of installation

Timothy J. Baek 1 년 전
부모
커밋
db4bc1ecbf
1개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. 7 3
      README.md

+ 7 - 3
README.md

@@ -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