A repo to host auction contracts
Install packages and start server (I prefer using yarn)
yarn
yarn start
Start a local blockchain like Ganache. You can use Ganache CLI or the desktop client.
ganache-cli
Add an .env
file depending on which port ganache is running on and which port you want your server running on.
// .env
RPC_HOST="127.0.0.1"
RPC_PORT=8545
Compile and migrate your local smart contracts.
truffle migrate --reset