MrDemonWolf App
Getting Started

Installation

Prerequisites and setup instructions for the MrDemonWolf Official App.

Installation

Prerequisites

  • Node.js 20+ (LTS recommended)
  • pnpm — package manager (npm install -g pnpm)
  • Expo CLI — included via npx expo
  • EAS CLI — for builds and submissions (npm install -g eas-cli)
  • Xcode (macOS only) — for iOS simulator
  • Android Studio — for Android emulator

Clone & Install

git clone https://github.com/MrDemonWolf/official-app.git
cd official-app
pnpm install

Environment Setup

Copy the example environment file and fill in values:

cp .env.example .env

See Environment Variables for a full reference of required values.

Firebase Configuration

Download the Firebase config files from the Firebase Console and place them in the project root:

  • GoogleService-Info.plist — iOS Firebase config
  • google-services.json — Android Firebase config

See Firebase Setup for detailed instructions.

Generate Native Projects

Before running on a device or simulator, generate the native iOS and Android projects:

pnpm prebuild

To clean and regenerate:

pnpm prebuild:clean

On this page