Is a setup like this not possible?
production.ini file:
[app:main]
use = egg:my_project
... various settings ...
[server:main]
...
development.ini file:
[app:main]
use = config:production.ini#main
... override some production settings ...
Then I try starting my development server and get:
No section 'main' (prefixed by 'server') found in config development.ini
I'd like to chain my config files together like so:
production.ini -> development.ini -> local.ini -> test.ini
It seems like this should be possible, but I haven't gotten the magic right yet.