embark/docs/creating-a-new-dapp.rst

43 lines
1.0 KiB
ReStructuredText
Raw Normal View History

2017-01-14 23:11:43 +00:00
Creating a new DApp
===================
If you want to create a blank new app.
.. code:: bash
$ embark new AppName
$ cd AppName
2017-03-05 00:01:05 +00:00
To run Embark then in one console run:
.. code:: bash
$ embark blockchain
And in another console run:
.. code:: bash
$ embark run
2017-01-14 23:11:43 +00:00
DApp Structure
==============
.. code:: bash
app/
2017-03-05 00:01:05 +00:00
|___ contracts/ #solidity smart contracts
2017-01-14 23:11:43 +00:00
|___ html/
|___ css/
|___ js/
config/
2017-03-05 00:01:05 +00:00
|___ blockchain.json #rpc and blockchain configuration
|___ contracts.json #ethereum contracts configuration
|___ storage.json #ipfs configuration
|___ communication.json #whisper/orbit configuration
|___ webserver.json #dev webserver configuration
2017-01-14 23:11:43 +00:00
test/
|___ #contracts tests
2017-03-05 00:01:05 +00:00
Solidity files in the contracts directory will automatically be deployed with ``embark run``. Changes in any files will automatically be reflected in app, changes to contracts will result in a redeployment and update of their JS Bindings