This project is no longer maintained, if you want to see development continued please create an issue
Node.js based app to show the current status of your miner in a browser.
Requirements: nodejs >= 12
Step 1: Clone the repository or download the current version and extract it.
git clone https://github.com/selaux/miner-dashboard.git
Step 2: Copy example configuration
cd miner-dashboard
mv config/config.example.js config/config.js
Step 3: Adapt config/config.js
to match your mining setup. The Module List to shows available modules and how they are set up.
Step 4: Start the application
npm start
Step 5: Visit url and check if everything works.
http://localhost:3000
docker run -t -i --rm -p 3000:3000 -v /path/to/your/config.js:/app/config/config.js:ro selaux/miner-dashboard:latest
Make sure you make the dashboard listen to port 3000 in your configuration or adapt the docker port forwarding to your liking.
In most docker installations you can reference the host by using the ip 172.17.42.1
in your configuration.
Note: Each module can have an unique id assigned in the configuration object, so it can be referenced by another module.
(The MIT License)
Copyright (c) 2013-2021 Stefan Lau github@stefanlau.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.