Currently the backend does not know how/where it is deploey to (e.g. localhost:8080 or my-domain.example.com). Because of this the backend can only output URL Paths instead of full URLs in its resources.
[ ] Make the backend aware of its host (+ base path), e.g., with a config option
[ ] Update all partial URLs in resources to full URLs (/experiments/1 to http://localhost:9009/experiments/1)
Currently the backend does not know how/where it is deploey to (e.g.
localhost:8080
ormy-domain.example.com
). Because of this the backend can only output URL Paths instead of full URLs in its resources./experiments/1
tohttp://localhost:9009/experiments/1
)