cubicweb/pyramid/init_instance.py
author Denis Laxalde <denis.laxalde@logilab.fr>
Fri, 21 Oct 2016 18:43:13 +0200
changeset 11736 b77c82355325
parent 11631 faf279e33298
permissions -rw-r--r--
[pkg] Cleanup MANIFEST.in from non-matching entries This cleans up output of setup.py executions.

from cubicweb.cwconfig import CubicWebConfiguration


def includeme(config):
    appid = config.registry.settings['cubicweb.instance']
    cwconfig = CubicWebConfiguration.config_for(appid)

    config.registry['cubicweb.config'] = cwconfig
    config.registry['cubicweb.repository'] = repo = cwconfig.repository()
    config.registry['cubicweb.registry'] = repo.vreg