Ethlife steps:
-
Install
./init.sh
npm install -g webpack
-
Build and watch
npm run build
...Files will be built into
dist/
. Just symlink that dir into your dapps path. -
Getting it visible in Parity
For Mac systems
ln -s $PWD/dist $HOME/Library/Application\ Support/io.parity.ethereum/dapps/ethlife
For Linux systems
ln -s $PWD/dist $HOME/.local/share/io.parity.ethereum/dapps/ethlife
-
If using local chain, Start local parity and attach console
geth --datadir /nodes/01 --identity node_1 --networkid 1234 --port 8201 --unlock
--password <(echo -n 01) --nodiscover --rpc --rpcport 31101 --rpccorsdomain '*'geth attach /nodes/01/geth.ipc
-
start parity
-
In application, click refresh, app will be visible
-
Make changes to src/client/app.jsx and refresh page, new content will be visible