A web app for tracking Realm of Mad God loot items and quests.
- Loot tracking for UT & ST items and blueprints
- Export your loot via generated screenshot
- Quest and quest mark tracking
- Share your loot profile with a unique link
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
- Create a Firebase project: console.firebase.google.com
- Register a new Web app
- Generate a new service account key
- Define a
.env
file with the following entries:
SERVICE_ACCOUNT=
API_KEY=
AUTH_DOMAIN=
PROJECT_ID=
STORAGE_BUCKET=
MESSAGING_SENDER_ID=
APP_ID=
MEASUREMENT_ID=
Note: the service account entry must be a single line JSON string surrounded by single quotations ('
)
- Enable the Google provider under Authentication -> Sign-in method
- Add a new user
- Start the project with the following command:
yarn dev
Check out the deployment documentation for more information.