socon icon indicating copy to clipboard operation
socon copied to clipboard

Add the possibilty to load mulitple config file by project

Open StephaneCapponi opened this issue 2 years ago • 0 comments

By default each project config load "management.config" module as a project configuration module. It would be interesting if we could set a list of config files to load. This would help organizing the project configuration files.

Something like:

class MyConfig(ProjectConfig):
    name = 'projects.myconfig'
    settings_module = [
        'management.config',
        'management.other'
    ]

StephaneCapponi avatar Jun 26 '23 14:06 StephaneCapponi