bigchaindb/bigchaindb/__init__.py

89 lines
2.7 KiB
Python
Raw Normal View History

2016-02-10 19:55:33 +01:00
import copy
import logging
2016-02-10 19:55:33 +01:00
from bigchaindb.log import DEFAULT_LOGGING_CONFIG as log_config
2016-04-07 14:15:29 +02:00
# from functools import reduce
# PORT_NUMBER = reduce(lambda x, y: x * y, map(ord, 'BigchainDB')) % 2**16
# basically, the port number is 9984
# The following variable is used by `bigchaindb configure` to
# prompt the user for database values. We cannot rely on
# _base_database_localmongodb.keys() because dicts are unordered.
# I tried to configure
2017-04-04 18:58:34 +02:00
_database_keys_map = {
'localmongodb': ('host', 'port', 'name'),
2017-04-04 18:58:34 +02:00
}
_base_database_localmongodb = {
'host': 'localhost',
'port': 27017,
'name': 'bigchain',
'replicaset': None,
'login': None,
'password': None,
}
_database_localmongodb = {
'backend': 'localmongodb',
'connection_timeout': 5000,
'max_tries': 3,
'ssl': False,
'ca_cert': None,
'certfile': None,
'keyfile': None,
'keyfile_passphrase': None,
'crlfile': None,
}
_database_localmongodb.update(_base_database_localmongodb)
_database_map = {
'localmongodb': _database_localmongodb,
}
2016-02-10 19:55:33 +01:00
config = {
'server': {
2016-04-07 14:15:29 +02:00
# Note: this section supports all the Gunicorn settings:
# - http://docs.gunicorn.org/en/stable/settings.html
'bind': 'localhost:9984',
'loglevel': logging.getLevelName(
log_config['handlers']['console']['level']).lower(),
'workers': None, # if None, the value will be cpu_count * 2 + 1
},
2017-04-07 10:51:00 +02:00
'wsserver': {
'scheme': 'ws',
'host': 'localhost',
'port': 9985,
'advertised_scheme': 'ws',
'advertised_host': 'localhost',
'advertised_port': 9985,
2017-04-07 10:51:00 +02:00
},
'tendermint': {
'host': 'localhost',
'port': 26657,
},
# FIXME: hardcoding to localmongodb for now
'database': _database_map['localmongodb'],
2017-03-13 17:55:11 +01:00
'log': {
'file': log_config['handlers']['file']['filename'],
'error_file': log_config['handlers']['errors']['filename'],
'level_console': logging.getLevelName(
2017-04-18 15:58:14 +02:00
log_config['handlers']['console']['level']).lower(),
'level_logfile': logging.getLevelName(
2017-04-18 15:58:14 +02:00
log_config['handlers']['file']['level']).lower(),
'datefmt_console': log_config['formatters']['console']['datefmt'],
'datefmt_logfile': log_config['formatters']['file']['datefmt'],
'fmt_console': log_config['formatters']['console']['format'],
'fmt_logfile': log_config['formatters']['file']['format'],
'granular_levels': {},
2017-03-13 17:55:11 +01:00
},
2016-02-10 19:55:33 +01:00
}
# We need to maintain a backup copy of the original config dict in case
# the user wants to reconfigure the node. Check ``bigchaindb.config_utils``
# for more info.
_config = copy.deepcopy(config)
2016-02-22 10:17:16 +01:00
from bigchaindb.core import Bigchain # noqa
from bigchaindb.version import __version__ # noqa