npm run migrate
npm run migrate --network mycustomnetwork
npm run migrate:reset
Runs Solidity linter (solhint)
Runs prettier on Solidity contracts
npm run prettier:solidity
Compiles and hot-reloads for development
Compiles and minifies for production
Runs ganache-cli with forked mainnet
ganache-cli -f https://cloudflare-eth.com
Runs ganache-cli with forked mainnet and unlocked account
ganache-cli -f https://cloudflare-eth.com -u "0x41653c7d61609D856f29355E404F310Ec4142Cfb"
Runs ganache-cli in docker - simplest version
docker run --detach --publish 8545:8545 trufflesuite/ganache-cli:latest
Runs ganache-cli in docker with additional parameters
docker run --detach --publish 8545:8545 trufflesuite/ganache-cli:latest --verbose --blockTime=5 --accounts=20
Builds production-ready Docker image (Nginx as a web server)
docker build --tag dapp-vue-starter .
See Configuration Reference.