Skip to content

Commit

Permalink
tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
chatch authored Nov 13, 2017
1 parent 284e475 commit 5f25896
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Public: https://steexp.com |
Test: https://testnet.steexp.com |
Local: http://localhost:3000

A ledger explorer for the [Stellar](https://stellar.org).
A ledger explorer for [Stellar](https://stellar.org).

## Resources
Resource|URI
Expand All @@ -14,35 +14,35 @@ Latest Operations|[/operations](https://steexp.com/operations)
Latest Transactions|[/txs](https://steexp.com/txs)
Latest Ledgers|[/ledgers](https://steexp.com/ledgers)
Account by Federated address|[/account/stellar*fed.network](https://steexp.com/account/stellar*fed.network)
Account by Public address|[/account/GBAM...](https://steexp.com/account/GBAMBOOZDWZPVV52RCLJQYMQNXOBLOXWNQAY2IF2FREV2WL46DBCH3BE)
Account by Public address|[/account/GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX](https://steexp.com/account/GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX)
Account Effects|[/account/stellar*fed.network#effects](https://steexp.com/account/stellar*fed.network#effects)
Account Operations|[/account/stellar*fed.network#operations](https://steexp.com/account/stellar*fed.network#operations)
Transaction|[/tx/26a568681...](https://steexp.com/tx/26a568681712a44a515b2c90dcfaadb3ed2c40dc60254638407937bee4767071)
Transaction|[/tx/26a568681712a44a515b2c90dcfaadb3ed2c40dc60254638407937bee4767071](https://steexp.com/tx/26a568681712a44a515b2c90dcfaadb3ed2c40dc60254638407937bee4767071)
Ledger|[/ledger/10000000](https://steexp.com/ledger/10000000)

## Exploring Private / Local Development Networks<a name="private-networks"></a>

steexp will connect to a local horizon instance at (http://localhost:8000) by default. If your running a local private network for development this is quite handy easily browsing your changes to the ledger.
steexp will connect to a local horizon instance at http://localhost:8000 by default. If your running a local private network for development this is quite handy for browsing your changes to the ledger.

Alternatively you can run locally connecting to the testnet or public network horizon instances. To do this define these hosts to point to your localhost:
Alternatively you can run locally connecting to the testnet or public network horizon instances. To do this define these aliases to localhost:
```
127.0.1.1 testnet.local # for steexp testnet horizon
127.0.1.1 publicnet.local # for steexp use mainnet horizon
127.0.1.1 testnet.local # for steexp testnet horizon
127.0.1.1 publicnet.local # for steexp use mainnet horizon
```

Restart steexp then navigate to testnet.local:3000 or publicnet.local as required.
Navigate to http://testnet.local:3000 or http://publicnet.local:3000 to select the network your interesting in exploring.

## Development

NOTE: use npm instead of yarn to install the dependencies (see #15 for details)
NOTE: use npm instead of yarn to install the dependencies - see [#15](https://github.com/chatch/stellarexplorer/issues/15) for details

See the section [Exploring Private / Local Development Networks](#private-networks) for connecting to different backend networks. By default steexp will look for a local instance of horizon.

Start the server:
Start:
```
npm i && yarn start
```
Tests:
Test:
```
npm i && yarn test
```
Expand Down

0 comments on commit 5f25896

Please sign in to comment.