{"id":48600797,"url":"https://github.com/zeriontech/blog","last_synced_at":"2026-04-08T22:02:13.298Z","repository":{"id":347331999,"uuid":"1193512336","full_name":"zeriontech/blog","owner":"zeriontech","description":"Zerion Blog — static site generated from Ghost CMS export","archived":false,"fork":false,"pushed_at":"2026-03-27T14:17:12.000Z","size":1046,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-27T23:53:32.440Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/zeriontech.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-03-27T09:58:21.000Z","updated_at":"2026-03-27T14:17:15.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zeriontech/blog","commit_stats":null,"previous_names":["zeriontech/blog"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/zeriontech/blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeriontech%2Fblog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeriontech%2Fblog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeriontech%2Fblog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeriontech%2Fblog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeriontech","download_url":"https://codeload.github.com/zeriontech/blog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeriontech%2Fblog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31575755,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-04-08T22:02:08.382Z","updated_at":"2026-04-08T22:02:13.289Z","avatar_url":"https://github.com/zeriontech.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zerion Blog\n\nSelf-hosted static blog. Posts are markdown files with YAML frontmatter. A single Python script generates the full site -- no frameworks, no dependencies.\n\n## Structure\n\n```\n├── build.py              # Static site generator (Python 3, zero deps)\n├── favicon.png           # Site favicon\n├── content/\n│   ├── posts/            # Blog posts (markdown + HTML body)\n│   │   ├── 2026-03-25-new-zerion-api-docs.md\n│   │   ├── 2026-03-19-zerion-api-supports-x402.md\n│   │   └── ...\n│   ├── pages/            # Static pages (about, knowledge base, etc.)\n│   └── authors.json      # Author metadata\n└── public/               # Generated output (gitignored)\n```\n\n## Build\n\n```bash\npython3 build.py\n```\n\nPreview locally:\n\n```bash\npython3 build.py --serve\n# Open http://localhost:3000\n```\n\n## Writing a new post\n\nCreate a markdown file in `content/posts/`:\n\n```markdown\n---\ntitle: \"Your Post Title\"\nslug: your-post-title\ndate: 2026-04-01\npublished_at: 2026-04-01T12:00:00.000Z\nfeature_image: https://example.com/image.png\nauthors:\n  - name: Your Name\n    slug: your-name\n    avatar: https://example.com/avatar.png\ntags:\n  - Zerion API\nexcerpt: \"A short description for cards and SEO.\"\n---\n\n\u003cp\u003eYour HTML content here.\u003c/p\u003e\n```\n\nThen rebuild: `python3 build.py`\n\n## URL structure\n\nAll URLs match the original Ghost blog at `zerion.io/blog/` for zero-downtime migration:\n\n| Pattern | Example |\n|---------|---------|\n| `/{slug}/` | `/best-solana-apis-for-developers/` |\n| `/author/{slug}/` | `/author/vladimir/` |\n| `/tag/{slug}/` | `/tag/zerion-api/` |\n| `/changelog/` | Wallet update timeline |\n\n## Deployment\n\nThe `public/` directory is a fully static site. Deploy to any static host:\n\n```bash\n# Vercel\nvercel public/\n\n# Cloudflare Pages\nwrangler pages deploy public/\n\n# Netlify\nnetlify deploy --dir=public --prod\n```\n\n## Images\n\nImages are currently served from the Ghost CDN (`zerion.io/blog/content/images/`). To self-host, download them into an `assets/` directory and update the URLs in the markdown files.\n\n## What's generated\n\n- 302 blog posts\n- 8 author listing pages\n- 135 tag listing pages\n- 12 static pages\n- 1 changelog (37 wallet updates)\n- 458 total HTML files\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeriontech%2Fblog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeriontech%2Fblog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeriontech%2Fblog/lists"}