mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-22 13:32:00 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
26
odoo-bringout-oca-ocb-base/odoo/conf/__init__.py
Normal file
26
odoo-bringout-oca-ocb-base/odoo/conf/__init__.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
""" Library-wide configuration variables.
|
||||
|
||||
For now, configuration code is in openerp.tools.config. It is in mainly
|
||||
unprocessed form, e.g. addons_path is a string with commas-separated
|
||||
paths. The aim is to have code related to configuration (command line
|
||||
parsing, configuration file loading and saving, ...) in this module
|
||||
and provide real Python variables, e.g. addons_paths is really a list
|
||||
of paths.
|
||||
|
||||
To initialize properly this module, openerp.tools.config.parse_config()
|
||||
must be used.
|
||||
|
||||
"""
|
||||
|
||||
# Paths to search for OpenERP addons.
|
||||
addons_paths = []
|
||||
|
||||
# List of server-wide modules to load. Those modules are supposed to provide
|
||||
# features not necessarily tied to a particular database. This is in contrast
|
||||
# to modules that are always bound to a specific database when they are
|
||||
# installed (i.e. the majority of OpenERP addons). This is set with the --load
|
||||
# command-line option.
|
||||
server_wide_modules = []
|
||||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue