Basic setup Credits: http://maksimivanov.com/posts/ethereum-react-dapp-tutorial
First install truffle and ganache globally:
npm install -g truffle
npm install -g ganache-cliNow run ganache-cli on port 7545:
ganache-cli -b 3 -p 7545Run the migrations (contracts are already compiled):
truffle migrateInstall 🦊 Metamask browser extension and connect to local network (custom RPC, http://localhost:7545)
Go to /front folder install dependencies and run the app:
cd front
yarn
yarn startWeb app should be available on http://localhost:3000.
Login to Metamask using mnemonic from ganache-cli output.