Build It Yourself
Prerequisites
- Node.js >= 18.0
- Rustup latest
- .NET SDK >= 8.0
- WebView2 latest - pre-installed on Windows 11 and the latest version of Windows 10
Steps
Clone Repo And Submodules
git clone --recursive https://github.com/zevnda/steam-game-idler.gitInstall Dependencies
cd ./steam-game-idler
pnpm installBuild Libraries
dotnet build ./libs/SteamUtility.csproj # Outputs to `/src-tauri/libs/`Create Environment Files
- Create a
.env.devand.env.prodfile in the root ofsteam-game-idler - Add a
KEYvariable containing your Steam Web API Key to both.env.devand.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 tauri devBuild App
pnpm tauri build # Outputs to `/src-tauri/target/release/bundle/`Last updated on