NEO Blockchain Explorer
NEOverse Explorer provides insight into the present and historical state of NEO blockchain.
yarn install
yarn run migrate:up
(ensure the DATABASE_URL
setting in .env
has the right credentials)yarn run start
(or yarn run start:web
to forego syncing blocks)In development mode, the GraphQL UI can be access at the /graphql route
(e.g.: http://localhost:300/graphql).
Scripts are organized under the /scripts
folder and can be placed into logical subfolders. They
can then be run via yarn run script
along with the script path and any extra arguments. For
example, the migrate.js
script can be run via yarn run script ./scripts/migrate.js up
.
heroku git:remote -a neoverse-explorer
git push heroku master
Migrations will automatically run when pushing to production.