We have a 1 hour 45 minutes youtube video showing how we created this project. https://youtu.be/VXEjw518oWg
The code is sloppy, that's for sure but our intention is to point out, signal the opportunities we have.
Choose "Realtime database"
Set the rules for Realtime database
{
"rules": {
"verificationsbyuserid": {
"$uid": {
".read": "$uid === auth.uid"
}
},
"users": {
"$uid": {
".write": "$uid === auth.uid",
".read": "$uid === auth.uid"
}
}
}
}
Export service account file (JSON) and save it as
./backend/firebaseServiceAccount.json
Update the content. That is enter your username/password and url/port for your Ravencoin core QT Syntax
{
"rpcUsername": "VerySecret",
"rpcPassword": "VerySecret",
"rpcURL": "http://127.0.0.1:8766"
}
change directory to ./client run
npm install
To start local dev server run
npm start
install dependencies by running
npm install
To start the backend/server part run
node index