{"id":51836268,"url":"https://github.com/fildon/steam-boiler","last_synced_at":"2026-07-22T22:03:53.842Z","repository":{"id":361121120,"uuid":"1253158410","full_name":"fildon/steam-boiler","owner":"fildon","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-29T08:11:12.000Z","size":81,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-29T10:09:10.077Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fildon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-29T07:46:36.000Z","updated_at":"2026-05-29T08:11:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fildon/steam-boiler","commit_stats":null,"previous_names":["fildon/steam-boiler"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/fildon/steam-boiler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fildon%2Fsteam-boiler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fildon%2Fsteam-boiler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fildon%2Fsteam-boiler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fildon%2Fsteam-boiler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fildon","download_url":"https://codeload.github.com/fildon/steam-boiler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fildon%2Fsteam-boiler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35778989,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-22T02:00:06.236Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-07-22T22:03:52.057Z","updated_at":"2026-07-22T22:03:53.838Z","avatar_url":"https://github.com/fildon.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Steam Boiler\n\nA web app that analyses your Steam account — playtime, library stats, and more.\n\nBuilt with Next.js 15 (App Router), TypeScript, Tailwind CSS, and the Steam Web API.\n\n## Setup\n\n1. **Get a Steam API key** at https://steamcommunity.com/dev/apikey\n2. Copy `.env.example` to `.env.local` and fill in the values:\n\n```\nSTEAM_API_KEY=        # from step 1\nSESSION_SECRET=       # any random string, min 32 characters\nNEXT_PUBLIC_BASE_URL= # e.g. http://localhost:3000\n```\n\n3. Install dependencies and run:\n\n```bash\nnpm install\nnpm run dev\n```\n\nOpen http://localhost:3000 and sign in with Steam.\n\n## Deploying to Netlify\n\nThe app is deployed at `steam-boiler.rupertmckay.com` via Netlify. `netlify.toml` at the repo root contains the build configuration.\n\n### 1. Connect the repo\n\nPush to GitHub, then in the Netlify dashboard create a new site from that repo. Netlify will detect `netlify.toml` and configure the build automatically.\n\n### 2. Set environment variables\n\nIn **Netlify → Site → Environment variables**, add:\n\n| Variable | Value |\n|---|---|\n| `STEAM_API_KEY` | From https://steamcommunity.com/dev/apikey |\n| `SESSION_SECRET` | Random 32+ char string — generate with `node -e \"console.log(require('crypto').randomBytes(32).toString('hex'))\"` |\n| `NEXT_PUBLIC_BASE_URL` | `https://steam-boiler.rupertmckay.com` |\n\n### 3. Add the custom domain\n\nIn **Netlify → Site → Domain management**, add `steam-boiler.rupertmckay.com`.\n\nNetlify will show two DNS records to add — do both in **Squarespace → Domains → rupertmckay.com → DNS Settings**:\n\n**CNAME** — routes traffic to Netlify:\n| Field | Value |\n|---|---|\n| Type | `CNAME` |\n| Host | `steam-boiler` |\n| Data | `\u003cyour-netlify-site\u003e.netlify.app` |\n\n**TXT** — proves domain ownership so Netlify can provision the SSL certificate:\n| Field | Value |\n|---|---|\n| Type | `TXT` |\n| Host | as shown in Netlify (e.g. `_netlify`) |\n| Data | the challenge value shown in Netlify |\n\nOnce both records are saved, click **Verify** in Netlify. DNS propagation usually takes a few minutes with Squarespace. Netlify provisions HTTPS via Let's Encrypt automatically after verification.\n\n### 4. Update the Steam API key domain\n\nSteam API keys are registered to a domain. Update yours at https://steamcommunity.com/dev/apikey — change the domain to `steam-boiler.rupertmckay.com`. The key itself stays the same.\n\n## Architecture\n\n- **Auth** — Steam OpenID 2.0, verified server-side; session stored in an encrypted cookie via `iron-session`\n- **Data** — All Steam API calls are made server-side (API key never exposed to the client)\n- **Pages** — Server components; data is fetched at request time\n\n---\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffildon%2Fsteam-boiler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffildon%2Fsteam-boiler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffildon%2Fsteam-boiler/lists"}