I have 4 different environments for an app (production, test, development, and demo).
I’d like to make it so a code refresh on any of the three downstream from dev has no exceptions that need to be managed per-server.
Docs say to load a different config file depending on the server. But $request->host() doesn’t work in bootstrap. Of course it would be trivial to use $_SERVER var to achieve the same. But I’m interested in what the recommended Cake-correct way to handle this is supposed to be,
Also, does doing this have any impact on caching/performance?
The plugin seems promising, but there are strange issues.
setting debug to false for any given environment doesn’t really work. the icon in the lower right is gone, but there’s still something else there, and viewing the page source reveals the debug div is still actually there.
setting database connections doesn’t do anything at all, it just goes with whatever is in app.php