Frontend app for the HyperVIBES project.
Clone the repo:
$ git clone git@github.com:R-Group-Devs/hypervibes-frontend.git
Install dependencies:
$ yarn
You'll need RPC endpoints for all networks you plan to use during local development. You can generate private RPC endpoints with Infura or Alchemy, or search for public RPC endpoints to use.
Add the following environment variables to a .env.local
file:
REACT_APP_ETHEREUM_RPC_URL=???
REACT_APP_POLYGON_RPC_URL=???
REACT_APP_FANTOM_RPC_URL=???
REACT_APP_ARBITRUM_RPC_URL=???
REACT_APP_ROPSTEN_RPC_URL=???
REACT_APP_RINKEBY_RPC_URL=???
REACT_APP_GOERLI_RPC_URL=???
REACT_APP_MUMBAI_RPC_URL=???
Run the app in development mode:
$ yarn start
Generate a browser-ready build artifact:
$ yarn build
Preview an app build:
$ yarn serve