Main Website for the RIF Marketplace
Warning: This project is in alpha state. There might (and most probably will) be changes in the future to its working. Also, no guarantees can be made about its stability, efficiency, and security at this stage.
See what "Lead Maintainer" means here.
Download and setup the RIF Marketplace UI
git clone [email protected]:rsksmart/rif-marketplace-ui.git
cd rif-marketplace-ui
Install the dependencies
npm i
Setup .env
file with the following configuration:
REACT_APP_CACHE_ADDR
: Cache connection URIREACT_APP_LOG_LEVEL
: React logging levelREACT_APP_NETWORK
: Select the Network to connect (must be defined inui-config.json
)
Example:
REACT_APP_CACHE_ADDR=http://localhost:3030
REACT_APP_LOG_LEVEL=error
REACT_APP_NETWORK=rskTestnet
If you want your own Network configuration, please add it to the config file src/ui-config.json
.
Example:
customAddress": {
"rif": "0x...",
"rnsDotRskOwner": "0x...",
"marketplace": "0x..."
}
Run the UI (Will be available on http://localhost:3000/)
npm start
To setup the complete Development environment please see Rif Marketplace Dev project.
There are some ways you can make this module better:
- Consult our open issues and take on one of them
- Help our tests reach 100% coverage!
- Our
Uncaught Error
page was inspired by Kapwing. Check out their great work!