Skip to Content
Get StartedBuild It Yourself

Build It Yourself

Prerequisites

Steps

Clone Repo And Submodules

git clone --recursive https://github.com/zevnda/steam-game-idler.git

Install Dependencies

cd ./steam-game-idler pnpm install

Build Libraries

MSBuild ./libs//SteamUtility.csproj # Outputs to `/src-tauri/libs/`

Create Environment Files

  1. Create a .env.dev and .env.prod file in the root of steam-game-idler
  2. Add a KEY variable containing your Steam Web API Key to both .env.dev and .env.prod
    • .env.dev
    • .env.prod
    • package-lock.json
    • package.json
.env.dev
KEY="C48E0*********7855Q"
.env.prod
KEY="C48E0*********7855Q"

Run Dev Build

pnpm run tauri dev

Build App

pnpm run tauri build # Outputs to `/src-tauri/target/release/bundle/`
Last updated on