Local dev setup

Once you have installed the requirements as mentioned in the General Requirements docs, you can try setting the local dev env as follows.

  • Clone the repo.

  • Install deps.

  • start zcashd ( with all the flags necessary as mentioned in the General Requirements )

  • start the app in dev mode.

Install elixir deps using Mix

 $ mix deps.get

Install frontend deps using npm

$ cd assets
$ npm install

Start the app

$ iex -S mix phx.server

open http://localhost:4000/ in your browser.

Last updated