NEOverse Explorer provides insight into the present and historical state of NEO blockchain.
- Run
yarn install
- Run
yarn run migrate:up
(ensure theDATABASE_URL
setting in.env
has the right credentials) - Run
yarn run start
(oryarn run start:web
to forego syncing blocks) - Navigate to http://localhost:3000
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
.
- Add remote origin via
heroku git:remote -a neoverse-explorer
- Push to production via
git push heroku master
Migrations will automatically run when pushing to production.