embark-area-51/docs/working-with-different-chains.rst
2017-01-14 18:11:43 -05:00

27 lines
594 B
ReStructuredText

Working with different chains
=============================
You can specify which environment to deploy to:
``$ embark blockchain production``
``$ embark run production``
The environment is a specific blockchain configuration that can be
managed at config/blockchain.json
.. code:: json
# config/blockchain.json
...
"livenet": {
"networkType": "livenet",
"rpcHost": "localhost",
"rpcPort": 8545,
"rpcCorsDomain": "http://localhost:8000",
"account": {
"password": "config/production/password"
}
},
...