Is there any way to define and choose between multiple settings of the _database configuration from conf.ini?
In particular, when I'm developing, I want to use an expendable database which likely would have different host/user/password/name settings. Similarly, when I stage a release candidate for final testing, I wouldn't want to use the production server, so these settings might again be different. Then finally, when all is ready to move into production, I'd like to be able to use the "blessed" settings for the production database.
For example, it would be nice if I could specify an attribute in conf.ini like:
lifecycle = "production"
and then all the settings would be set accordingly.
Right now, it seems like I need to manually change the settings in conf.ini each time I move between stages and that seems like an error prone operation.
Thank you.
-Rob