Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 991 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 991 Bytes

Blockscout - StealthTest Edition

Modifications:

  • Custom theme applied via /apps/block_scout_web/assets/css/theme/_stealthtest-theme.scss
  • StealthTest logos added to /apps/block_scout_web/assets/static/images/stealthtest_icon_black.svg

Getting started

Start Blockscout.

docker-compose up db blockscout smart-contract-verifier

While the Blockscout container is running you can rebuild styles.

cd blockscout/apps/block_scout_web/assets

npm install

npm run watch

Reload the page to see your changes.

Updating from upstream repository

This only needs to be done if we want to upgrade the version of Blockscout itself.

# Add the upstream repo as a remote
git remote add upstream git@github.com:blockscout/blockscout.git

# Fetch the latest commits
git fetch upstream

# Switch to local master branch
git checkout master

# Replay our master branch changes over the upstream master branch
git rebase upstream/master

git push --force