Update docker-compose.yml to fix uvicorn factory path

This commit is contained in:
Dave Morris
2023-08-07 08:19:37 -05:00
committed by GitHub
parent 4984a1282d
commit 8e8e97149a

View File

@ -9,7 +9,7 @@ services:
- "7860:7860"
volumes:
- ./:/app
command: bash -c "uvicorn --factory langflow.main:create_app --host 0.0.0.0 --port 7860 --reload"
command: bash -c "uvicorn --factory src.backend.langflow.main:create_app --host 0.0.0.0 --port 7860 --reload"
frontend:
build: