diff --git a/README.md b/README.md
index 1f7c053b06..00c3bebe0e 100644
--- a/README.md
+++ b/README.md
@@ -47,42 +47,47 @@ The [development stack page](https://github.com/poanetwork/poa-explorer/wiki/Dev
* For Mac OSX users: `brew install libtool`
* GitHub for code storage
-### Setup Instructions
+### Build and Run
- 1. Fork and clone repository.
- [`https://github.com/poanetwork/poa-explorer/fork`](https://github.com/poanetwork/poa-explorer/fork)
+ 1. Clone the repository.
+ [`https://github.com/poanetwork/poa-explorer`](https://github.com/poanetwork/poa-explorer)
2. Set up default configurations.
`cp apps/explorer/config/dev.secret.exs.example apps/explorer/config/dev.secret.exs`
- `cp apps/explorer_web/config/dev.secret.exs.example apps/explorer_web/config/dev.secret.exs`
-
- Optional: Set up default configuration for testing.
+ `cp apps/explorer_web/config/dev.secret.exs.example apps/explorer_web/config/dev.secret.exs`
+
Optional: Set up default configuration for testing.
`cp apps/explorer/config/test.secret.exs.example apps/explorer/config/test.secret.exs`
Example usage: Changing the default Postgres port from localhost:15432 if [Boxen](https://github.com/boxen/boxen) is installed.
3. Install dependencies.
- `mix do deps.get, local.rebar, deps.compile, compile`
+ `mix do deps.get, local.rebar --force, deps.compile, compile`
4. Create and migrate database.
- `mix ecto.create && mix ecto.migrate`
+ `mix ecto.create && mix ecto.migrate`
+
_Note:_ If you have run previously, drop the previous database
+ `mix do ecto.drop, ecto.create, ecto.migrate`
5. Install Node.js dependencies.
`cd apps/explorer_web/assets && npm install; cd -`
`cd apps/explorer && npm install; cd -`
- 6. Start Phoenix Server.
+ 6. Start Phoenix Server.
`mix phx.server`
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
_Additional runtime options:_
-* Run Phoenix Server with IEx (Interactive Elixer)
+* Run Phoenix Server with IEx (Interactive Elixer)
`iex -S mix phx.server`
* Run Phoenix Server with real time indexer
`DEBUG_INDEXER=1 iex -S mix phx.server`
+### POA Explorer Visual Interface
+
+![POA Explorer Example](explorer_example.gif)
+
### Umbrella Project Organization
@@ -98,7 +103,6 @@ Each OTP application has a restricted domain.
| `apps/indexer` | `:indexer` | `Indexer` | Uses `:ethereum_jsonrpc` to index chain and batch import data into `:explorer`. Any process, `Task`, or `GenServer` that automatically reads from the chain and writes to `:explorer` should be in `:indexer`. This restricts automatic writes to `:indexer` and read-only mode can be achieved by not running `:indexer`. |
-
### CircleCI Updates
To monitor build status, configure your local [CCMenu](http://ccmenu.org/) with the following url: [`https://circleci.com/gh/poanetwork/poa-explorer.cc.xml?circle-token=f8823a3d0090407c11f87028c73015a331dbf604`](https://circleci.com/gh/poanetwork/poa-explorer.cc.xml?circle-token=f8823a3d0090407c11f87028c73015a331dbf604)
@@ -169,4 +173,4 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution and pull request protoco
[![License: GPL v3.0](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
-This project is licensed under the GNU General Public License v3.0. See the [LICENSE](LICENSE) file for details.
+This project is licensed under the GNU General Public License v3.0. See the [LICENSE](LICENSE) file for details.
\ No newline at end of file
diff --git a/explorer_example.gif b/explorer_example.gif
new file mode 100644
index 0000000000..97b142a2d2
Binary files /dev/null and b/explorer_example.gif differ