https://github.com/bisq-network/bisq-inventory
https://github.com/bisq-network/bisq-inventory
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bisq-network/bisq-inventory
- Owner: bisq-network
- License: gpl-3.0
- Archived: true
- Created: 2022-07-26T18:51:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-25T01:42:49.000Z (over 2 years ago)
- Last Synced: 2025-01-15T16:57:09.428Z (about 1 year ago)
- Language: Java
- Size: 146 KB
- Stars: 2
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bisq-inventory
## Overview
For checking the health of the Bisq seed nodes from a browser, e.g., http://localhost:80
## Building source code
This repo has a dependency on git submodule [bisq](https://github.com/bisq-network/bisq).
There are two ways to clone it before it can be compiled:
```
# 1) Use the --recursive option in the clone command:
$ git clone --recursive https://github.com/bisq-network/bisq-inventory.git
# 2) Do a normal clone, and pull down the bisq repo dependency with two git submodule commands:
$ git clone https://github.com/bisq-network/bisq-inventory.git
$ cd bisq-inventory
$ git submodule init
$ git submodule update
```
To build:
```
$ ./gradlew clean build
```