Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ipfs-shipyard/ipfs_dht_explorer

Dashboard for exploring the public IPFS DHT
https://github.com/ipfs-shipyard/ipfs_dht_explorer

Last synced: about 2 months ago
JSON representation

Dashboard for exploring the public IPFS DHT

Awesome Lists containing this project

README

        

# IPFS DHT Explorer

## Related projects
- mindmax GeoLite2
- https://github.com/andrew/libp2p-dht-scrape-aas
- https://github.com/andrew/libp2p-dht-scrape-client

## Alternative scrapers
- https://github.com/wiberlin/ipfs-crawler
- https://github.com/whyrusleeping/ipfs-counter
- https://github.com/ipfs-shipyard/ipfs-counter

## Docker

Build the image:

```sh
docker build -t ipfsshipyard/ipfs_dht_explorer:latest .
```

Push it to docker hub

```sh
docker push ipfsshipyard/ipfs_dht_explorer:latest
```

To access the rails console:

```sh
docker-compose exec app rails console
```

Export the postgres database

```sh
docker exec -u postgres ipfs_dht_explorer_database.service.explorer.internal_1 pg_dump -Fc postgres > db.dump
```

## Local

Start locally by using `docker-compose`:

```sh
docker-compose up --build
```