|
@@ -157,7 +157,7 @@ jobs:
|
|
|
GLOBAL_LOG_LEVEL: debug
|
|
|
run: |
|
|
|
cd backend
|
|
|
- uvicorn main:app --port "8080" --forwarded-allow-ips '*' &
|
|
|
+ uvicorn open_webui.main:app --port "8080" --forwarded-allow-ips '*' &
|
|
|
UVICORN_PID=$!
|
|
|
# Wait up to 40 seconds for the server to start
|
|
|
for i in {1..40}; do
|
|
@@ -184,7 +184,7 @@ jobs:
|
|
|
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres
|
|
|
run: |
|
|
|
cd backend
|
|
|
- uvicorn main:app --port "8081" --forwarded-allow-ips '*' &
|
|
|
+ uvicorn open_webui.main:app --port "8081" --forwarded-allow-ips '*' &
|
|
|
UVICORN_PID=$!
|
|
|
# Wait up to 20 seconds for the server to start
|
|
|
for i in {1..20}; do
|
|
@@ -230,7 +230,7 @@ jobs:
|
|
|
# DATABASE_URL: mysql://root:mysql@localhost:3306/mysql
|
|
|
# run: |
|
|
|
# cd backend
|
|
|
-# uvicorn main:app --port "8083" --forwarded-allow-ips '*' &
|
|
|
+# uvicorn open_webui.main:app --port "8083" --forwarded-allow-ips '*' &
|
|
|
# UVICORN_PID=$!
|
|
|
# # Wait up to 20 seconds for the server to start
|
|
|
# for i in {1..20}; do
|