What is a good way of structuring strings / settings, for Dev vs Prod?
Say you have a Twitter Oauth flow, which redirects the user back to the app.
In that case, since you’re testing on sitename.com/version-test/landing, and then on prod, the url is sitename.com/landing, you’d need to use a different URL depending on the environment.
Normally from the dev side, you’d store those custom strings in some file, and then switch on the environment type, but how does this work in bubble?