Thanks to both of you. What I’m trying to understand is how to do local frontend development against a self-hosted instance or ORY Kratos that is deployed and exposed at let’s say on
https://app.example.com/
My initial understanding was that we could use the ORY proxy to achieve this, so it would rewrite the configured ui_url URL to match
http://localhost:4200 using something like
docker run --rm -it -p 4000:4000 --entrypoint /bin/sh oryd/ory:latest -c “ory proxy --dev --debug --project some-words-asdasdas
http://host.docker.internal:4200 https://app.example.com”