Hi, I have a clojurescript project running on nginx within docker which has a reverse proxy set up to a graphql service running in another docker container. This is working fine, but how can I improve the local dev experience? When I start my backend docker container and start the clojurescript app through cider, I get CORS errors because the reverse proxy is only in place if nginx is running. How can I make the reverse proxy part of my local dev flow?
I solved this, if anyone is interested