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
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.
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 [email protected]: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