On Sun, Mar 4, 2012 at 7:43 PM, Jamie B. <[email protected]> wrote: > Or each > developer could have their own .ini file. But then important config > changes aren't shared between them during SVN commits. ... Is there a way I > can use environment > variables in development.ini? Or does anyone have any other > suggestions? Thanks.
You can also have one config file read another and override just the changed variables. From Pylons test.ini: === [app:main] use = config:development.ini # Add additional test specific configuration options as necessary. === -- Mike Orr <[email protected]> -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
