embark/docs/working-with-different-chai...

27 lines
585 B
ReStructuredText
Raw Normal View History

2017-01-14 23:11:43 +00:00
Working with different chains
=============================
You can specify which environment to deploy to:
``$ embark blockchain livenet``
2017-01-14 23:11:43 +00:00
``$ embark run livenet``
2017-01-14 23:11:43 +00:00
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/livenet/password"
2017-01-14 23:11:43 +00:00
}
},
...