mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
import logging
|
|
import multiprocessing as mp
|
|
|
|
import bigchaindb
|
|
from bigchaindb.pipelines import vote, block, election, stale
|
|
from bigchaindb.web import server
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
BANNER = """
|
|
****************************************************************************
|
|
* *
|
|
* Initialization complete. BigchainDB Server is ready and waiting. *
|
|
* You can send HTTP requests via the HTTP API documented in the *
|
|
* BigchainDB Server docs at: *
|
|
* https://bigchaindb.com/http-api *
|
|
* *
|
|
* Listening to client connections on: {:<15} *
|
|
* *
|
|
****************************************************************************
|
|
"""
|
|
|
|
|
|
def start():
|
|
logger.info('Initializing BigchainDB...')
|
|
|
|
# start the processes
|
|
logger.info('Starting block')
|
|
block.start()
|
|
|
|
logger.info('Starting voter')
|
|
vote.start()
|
|
|
|
logger.info('Starting stale transaction monitor')
|
|
stale.start()
|
|
|
|
logger.info('Starting election')
|
|
election.start()
|
|
|
|
# start the web api
|
|
app_server = server.create_server(bigchaindb.config['server'])
|
|
p_webapi = mp.Process(name='webapi', target=app_server.run)
|
|
p_webapi.start()
|
|
|
|
# start message
|
|
logger.info(BANNER.format(bigchaindb.config['server']['bind']))
|