Steam Game IdlerSteam Game Idler
Advertisement

Build It Yourself

Prerequisites

Clone Repo And Submodules

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

Install Dependencies

npm install

Build Libraries

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

Create Environment Files

Create a .env file in the root of ./steam-game-idler and add a KEY variable containing your Steam Web API Key

.env
pnpm-lock.yaml
package.json
.env
KEY="ABC123******789XYZ"

Development or Production Build

# Development
npm run tauri dev

# Production
npm run tauri build # Outputs to `/src-tauri/target/release/bundle/`
Advertisement

On this page