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
When the variables are set to the default in the env file, everything works as expected. But when I try to change e.g UI_BASE_URL=http://localhost:3000 to UI_BASE_URL=http://<vm_ip>:3000, backend, db, etc. and run rush run:origin
I can see ip at run is still localhost / 127.0.0.1 / 0.0.0.0. I could try to do it manually backend_url = os.env.get("BACKEND_URL", "http://ip:8000") but I don't think that's a good solution...
The text was updated successfully, but these errors were encountered:
I am not sure if I understand this problem well. If ui shows up at local but not at the address you provided, you can try:
using docker fixed the issue of the ui not displaying rush build:container:canary nano origin.local.irec.yml
Then you need to edit the origin.irec.yml file: version of docker-compose is 3 i changed it back to 2.1 Then you have to remove extra parameters like start_period . for port issue you can either add it to your .env file or hardcode it into the yml file
BACKEND_PORT=3030 at the end of the .env file
When the variables are set to the default in the env file, everything works as expected. But when I try to change e.g
UI_BASE_URL=http://localhost:3000
toUI_BASE_URL=http://<vm_ip>:3000
, backend, db, etc. and runrush run:origin
I can see ip at run is still
localhost / 127.0.0.1 / 0.0.0.0
. I could try to do it manuallybackend_url = os.env.get("BACKEND_URL", "http://ip:8000")
but I don't think that's a good solution...The text was updated successfully, but these errors were encountered: