Skip to content

Latest commit

 

History

History
executable file
·
30 lines (19 loc) · 1.04 KB

README.md

File metadata and controls

executable file
·
30 lines (19 loc) · 1.04 KB

dragonchain-uvn-block-explorer

Stub:

Note: do not install on same server as your dragonchain verification node

  1. Install nodejs
  1. git clone or download and unzip the block explorer files
  2. In git bash or Windows command prompt, navigate to the folder (Example: "cd c/blockexplorer" if you unzipped the file to c:\blockexplorer) with a file named server.js
  3. Run npm install
  4. Run node generate-config.js (once)
  5. Run node server.js (or npm start for development: will restart the server on every file change)
  6. Go to 127.0.0.1:3000 in your browser

Press CTRL+C in the Git Bash or Command Prompt window to end the server process.

Note for Windows NodeJS users

The processes started by running our server can end up hanging. You can force Windows to kill the process with the following command:

taskkill /IM node.exe /F in a Windows command prompt or

taskkill -IM node.exe -F in Git Bash