You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a problem with verba when I deploy it on another machine (not on my local machine.
When I want to open Verba UI I I get stuck on Welcome to Verba Choose your deployment view.
Installation
pip install goldenverba
pip install from source
Docker installation
Weaviate Deployment
Local Deployment
Docker Deployment
Cloud Deployment
Configuration
Reader:
Chunker:
Embedder:
Retriever:
Generator:
Steps to Reproduce
You need 2 machines in your network:
Your local dev machine with IP: 192.168.0.100
Your strong server with IP 192.168.0.200
Steps:
Deploy verba using docker compose from this repo docker compose up -d --build on your server machine
Open http://192.168.0.200:8000 on your dev machine
Press Docker option
App is stuck
Additional context
Possible workaround is using ssh tunnels to access Verba ssh -L 8001:localhost:8000 [email protected], then website works under http://localhost:8001 on dev machine
The text was updated successfully, but these errors were encountered:
pktiuk
changed the title
CORS Missing Allow Origin when deployed using dockerCORS Missing Allow Origin when deployed using docker
Dec 11, 2024
It checks if the requests have the same origin, since it's deployed on another machine it fails with the CORS error message. I'll think of a way to disable this, but for now the workaround would be to simply delete the whole custom middleware logic. Let me know if that works for you 🚀
Description
There is a problem with verba when I deploy it on another machine (not on my local machine.
When I want to open Verba UI I I get stuck on
Welcome to Verba Choose your deployment
view.Installation
Weaviate Deployment
Configuration
Reader:
Chunker:
Embedder:
Retriever:
Generator:
Steps to Reproduce
You need 2 machines in your network:
192.168.0.100
192.168.0.200
Steps:
docker compose up -d --build
on your server machinehttp://192.168.0.200:8000
on your dev machineDocker
optionAdditional context
Possible workaround is using ssh tunnels to access Verba
ssh -L 8001:localhost:8000 [email protected]
, then website works underhttp://localhost:8001
on dev machineThe text was updated successfully, but these errors were encountered: