> For the complete documentation index, see [llms.txt](https://nighthawkapps.gitbook.io/zcash-explorer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nighthawkapps.gitbook.io/zcash-explorer/about/local-dev-setup.md).

# Local dev setup

Once you have installed the requirements as mentioned in the [General Requirements](/zcash-explorer/about/general-requirements.md) 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](https://hexdocs.pm/mix/1.12/Mix.html)

```
 $ 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.
