https://github.com/iotaledger/inx-dashboard
A node dashboard that uses INX
https://github.com/iotaledger/inx-dashboard
Last synced: 12 months ago
JSON representation
A node dashboard that uses INX
- Host: GitHub
- URL: https://github.com/iotaledger/inx-dashboard
- Owner: iotaledger
- License: apache-2.0
- Created: 2022-06-08T10:46:26.000Z (about 4 years ago)
- Default Branch: develop
- Last Pushed: 2024-05-14T15:32:04.000Z (about 2 years ago)
- Last Synced: 2024-06-21T16:53:08.177Z (about 2 years ago)
- Language: Go
- Size: 8.13 MB
- Stars: 2
- Watchers: 9
- Forks: 6
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# inx-dashboard
A node dashboard that uses INX
## Building inx-dashboard
Clone the repository with submodules
```bash
git clone --recurse-submodules https://github.com/iotaledger/inx-dashboard.git
```
Go to the root directory of the repo and call
```bash
./scripts/build.sh
```
## Setting password for login
To generate a password hash, and it's salt you need to use the Hornet docker image.
After installing docker use the hornet tools to generate the password hash:
```bash
docker run -it iotaledger/hornet:2.0-rc tools pwd-hash
```
You can set the hash and the salt with these parameters:
```bash
./inx-dashboard --dashboard.auth.passwordHash YOURHASH --dashboard.auth.passwordSalt YOURSALT
```
Do not forget to change username with ```--dashboard.auth.username```
## Getting full list of parameters
```bash
./inx-dashboard --help --full
```