wutta_corepos.conf
¶
App Configuration
- class wutta_corepos.conf.WuttaCoreposConfigExtension[source]¶
App config extension for Wutta-COREPOS.
This does some CORE DB connection setup based on config. It will create three sets of DB engines, and establish one primary engine for each set. The sets correspond to CORE Office DB types:
office_op
(default namecore_op
)office_trans
(default namecore_trans
)office_arch
(default nametrans_archive
)
The config object will be given the following attributes:
- core_office_op_engine¶
Primary engine for the
office_op
DB. May be null if no config is found.
- core_office_op_engines¶
Dict of
office_op
DB engines. May be empty if no config is found; otherwise there should at least be adefault
key defined, corresonding tocore_office_op_engine
.
- core_office_trans_engine¶
Primary engine for the
office_trans
DB. May be null if no config is found.
- core_office_trans_engines¶
Dict of
office_trans
DB engines. May be empty if no config is found; otherwise there should at least be adefault
key defined, corresonding tocore_office_trans_engine
.
- core_office_arch_engine¶
Primary engine for the
office_arch
DB. May be null if no config is found.
- core_office_arch_engines¶
Dict of
office_arch
DB engines. May be empty if no config is found; otherwise there should at least be adefault
key defined, corresonding tocore_office_arch_engine
.