This page walks you through installing Baklog, launching the local server for the first time, and triggering your first library fetch. By the end you will have the dashboard open atDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Ogrods/BAKLOG/llms.txt
Use this file to discover all available pages before exploring further.
http://localhost:8765 with at least one store connected and your games appearing in the Library tab. The whole process takes about five minutes for a typical setup.
Requirements
| Requirement | Details |
|---|---|
| Python 3.11+ | A virtual environment is strongly recommended. |
| Google Chrome, Chromium, or Microsoft Edge | Required for the Connections sign-in flow (cookie and OAuth capture). Override the detected browser path with BAKLOG_CHROME_PATH if needed. Edge ships with Windows and works as a drop-in replacement. |
| Operating system | Windows 10/11 (primary development target). macOS and Linux are supported with store-level limits — see Connecting Stores for the platform matrix. |
Install
Clone or download the repository
Get the Baklog source from GitHub. You can clone with Git or download a ZIP from the repository page.
Create a virtual environment and install dependencies
Create a Developers and CI can use
.venv in the project directory, activate it, and install the required packages.pip install -e ".[dev]" (or requirements-dev.txt) instead to get the full dev toolchain including pytest and ruff.Copy .env.example to .env (optional, legacy)
Baklog stores credentials in encrypted per-profile storage managed from the Connections tab — you do not need a On first
.env file for normal use. If you prefer the legacy file-based approach (for example, for scripted or headless setups), copy the example and fill in your credentials:python server.py start, any credentials present in .env are imported once into the default profile’s encrypted store and the file is archived as .env.imported. After that, manage credentials from the Connections tab.Run the dashboard
Start the bundled dev server, which serves the dashboard and lets you trigger fetchers directly from the Fetcher health row in the UI:python -m http.server 8080) lets you browse an existing library and run fetchers from the terminal, but personal edits fall back to browser localStorage instead of data/personal.json. Use it if you want a lightweight browse-only session.
Steam-specific setup
Steam requires a few one-time steps before your first fetch.-
Get a Steam Web API key at steamcommunity.com/dev/apikey. Use
localhostas the domain. The Connections tab can grab this automatically, but having it on hand speeds things up. -
Find your SteamID64 at steamid.io. It is a 17-digit number starting with
7656119. - Set Game details to Public in Steam → Profile → Edit Profile → Privacy Settings. Without this, the Steam Web API returns an empty library.
Optional: system tray
Keep Baklog running in the background with a system tray icon. The tray app starts the same local server, opens your browser, and gives you Open, Restart, and Quit from the menu. Install the tray dependencies and launch:.venv and tray launcher batch files:
BAKLOG.exe bundle is server-only and does not include the tray icon — use the tray launcher or refresh.ps1 / your OS scheduler for closed-app refresh.
Optional: production frontend build
Dev mode serves raw ES modules withCache-Control: no-store — no npm required for everyday use. For a smaller, cacheable production bundle with hashed assets:
dist/ receive immutable long-term cache headers. index.html stays no-store so the app always boots fresh.
Next steps
Connecting Stores
Per-store Connect steps, CLI fallbacks, fetcher flags, and the platform availability matrix.
Dashboard
Tabs, filters, statuses, deal radar, and the Picks panel.
FAQ
Free vs paid, privacy, invite-only access, and no-games-yet entry paths.
Troubleshooting
Auth failures, 403 errors, empty results, and common fixes.