Hi. Sorry for the noob question.
I've currently got a project with a flask service serving as a backend, and a NextJS service as a frontend. I need some way to get the flask service's url into the environment of the nextjs one. After running through the docs, I tried setting NEXT_PUBLIC_API_URL = ${{flask.RAILWAY_STATIC_URL}}, but that comes up empty in the actual application. How would I go about this?
Cheers!