{"id":50941213,"url":"https://github.com/demchaav/blog","last_synced_at":"2026-06-17T15:02:47.705Z","repository":{"id":364992743,"uuid":"1270001675","full_name":"DemchaAV/blog","owner":"DemchaAV","description":"Personal technical blog (Hugo + PaperMod) by Artem Demchyshyn","archived":false,"fork":false,"pushed_at":"2026-06-15T11:46:15.000Z","size":6702,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-15T12:27:26.414Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/DemchaAV.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":null,"dco":null,"cla":null}},"created_at":"2026-06-15T09:38:27.000Z","updated_at":"2026-06-15T11:46:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/DemchaAV/blog","commit_stats":null,"previous_names":["demchaav/blog"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/DemchaAV/blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemchaAV%2Fblog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemchaAV%2Fblog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemchaAV%2Fblog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemchaAV%2Fblog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DemchaAV","download_url":"https://codeload.github.com/DemchaAV/blog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemchaAV%2Fblog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34453438,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"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-06-17T15:02:44.555Z","updated_at":"2026-06-17T15:02:47.695Z","avatar_url":"https://github.com/DemchaAV.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Artem Demchyshyn Blog\n\nA minimal technical blog for Java backend engineering notes, built with Hugo and the PaperMod theme.\n\n**Live:** \u003chttps://demchaav.github.io/blog/\u003e\n\n## Stack\n\n- Hugo\n- PaperMod\n- GitHub Pages\n- GitHub Actions\n- No Node.js required for this setup\n\n## Project Structure\n\n```text\n.\n|-- archetypes/\n|-- content/\n|   |-- about.md\n|   |-- archives.md\n|   |-- search.md\n|   `-- posts/\n|-- themes/\n|   `-- PaperMod/\n|-- .github/\n|   `-- workflows/\n|-- hugo.yaml\n`-- README.md\n```\n\n## Local Development\n\nInstall Hugo Extended `0.146.0` or newer. PaperMod declares this as its minimum Hugo version.\n\nClone the repository with submodules, or initialize them after cloning:\n\n```powershell\ngit submodule update --init --recursive\n```\n\nRun the site locally:\n\n```powershell\nhugo server -D\n```\n\nOpen:\n\n```text\nhttp://localhost:1313/\n```\n\nCreate a new post:\n\n```powershell\nhugo new posts/my-post-title.md\n```\n\nSet `draft: false` when the post is ready to publish.\n\n## Publishing to GitHub Pages\n\nThe site is already live at \u003chttps://demchaav.github.io/blog/\u003e and redeploys automatically on every push to `main`. The one-time setup (kept for reference):\n\n1. Push this repository to GitHub.\n2. In the GitHub repository, open `Settings` -\u003e `Pages`.\n3. Set `Source` to `GitHub Actions`.\n4. Push to `main`.\n\nThe workflow in `.github/workflows/hugo.yaml` builds the site with Hugo and deploys `public/` to GitHub Pages. The workflow sets the production `baseURL` from GitHub Pages automatically, so it works for both user sites and project sites.\n\n## Analytics\n\nAnalytics use [GoatCounter](https://www.goatcounter.com/) (privacy-friendly, no cookies). It is enabled in `hugo.yaml` with the site code `demchaav`:\n\n```yaml\nparams:\n  analytics:\n    goatcounter:\n      enabled: true\n      code: \"demchaav\"\n      enableInDevelopment: false\n```\n\nStats: \u003chttps://demchaav.goatcounter.com/\u003e. The script loads in production only, so local `hugo server` visits are not counted.\n\n## Comments\n\nComments use [giscus](https://giscus.app/) backed by this repository's GitHub Discussions (Announcements category). The loader lives in `layouts/partials/comments.html` and is enabled via `params.comments: true`; the widget follows the site's light/dark theme.\n\n## Updating PaperMod\n\n```powershell\ngit submodule update --remote --merge themes/PaperMod\n```\n\nThen test locally and commit the updated submodule pointer.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdemchaav%2Fblog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdemchaav%2Fblog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdemchaav%2Fblog/lists"}