{"id":16967020,"url":"https://github.com/anshumanmahato/personal-blog-website","last_synced_at":"2025-06-21T09:04:30.129Z","repository":{"id":247059401,"uuid":"636706457","full_name":"AnshumanMahato/Personal-Blog-Website","owner":"AnshumanMahato","description":"This is my Personal Blog Website with Hashnode Headless CMS integration. ","archived":false,"fork":false,"pushed_at":"2025-04-01T03:18:31.000Z","size":4898,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-21T09:02:43.261Z","etag":null,"topics":["blog","hashnode","hashnode-blog","hashnode-headless","personal-website","portfolio-website"],"latest_commit_sha":null,"homepage":"https://anshumanmahato.me","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AnshumanMahato.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":["AnshumanMahato"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"custom":null}},"created_at":"2023-05-05T13:07:10.000Z","updated_at":"2025-06-11T15:26:22.000Z","dependencies_parsed_at":"2024-07-06T11:00:21.571Z","dependency_job_id":"8ab39892-b160-4a66-adea-02c17f6b3a83","html_url":"https://github.com/AnshumanMahato/Personal-Blog-Website","commit_stats":null,"previous_names":["anshumanmahato/personal-website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AnshumanMahato/Personal-Blog-Website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnshumanMahato%2FPersonal-Blog-Website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnshumanMahato%2FPersonal-Blog-Website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnshumanMahato%2FPersonal-Blog-Website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnshumanMahato%2FPersonal-Blog-Website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AnshumanMahato","download_url":"https://codeload.github.com/AnshumanMahato/Personal-Blog-Website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnshumanMahato%2FPersonal-Blog-Website/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261095303,"owners_count":23108782,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["blog","hashnode","hashnode-blog","hashnode-headless","personal-website","portfolio-website"],"created_at":"2024-10-14T00:07:09.318Z","updated_at":"2025-06-21T09:04:25.109Z","avatar_url":"https://github.com/AnshumanMahato.png","language":"TypeScript","funding_links":["https://github.com/sponsors/AnshumanMahato"],"categories":[],"sub_categories":[],"readme":"# Personal Blog Website\n\nMy peronal website, portfolio and blog. Blog is powered by Headless Hashnode CMS.\n\n## Features\n\n- [x] Simple and clean UI\n- [x] Blog via Headless Hashnode CMS\n- [x] Portfolio with Github pinned projects\n- [x] Responsive design\n- [x] Dark mode\n\n## Tech Stack\n\n- [Next.js](https://nextjs.org/)\n- [Tailwind CSS](https://tailwindcss.com/)\n- [GraphQL](https://graphql.org/) (for requests)\n\n# Headless Hashnode CMS\n\nThis website uses Headless Hashnode CMS to fetch and display blog posts. You can use it for free. It consumes [Hashnode's Public APIs](https://apidocs.hashnode.com/), and gives you a fully customizable blog that can be deployed anywhere, including a subpath of a custom domain. Combined with [Hashnode's headless](https://hashnode.com/headless) mode, it unlocks entirely new possibilities. You can now use [Hashnode's world class editor](https://hashnode.com/neptune) and dashboard to author content and collaborate.\n\n## Local Development\n\n1. Fork and clone this repository\n\n2. Create a Hashnode account and create a blog. (ignore if you already have one)\n\n3. Create a new Github Personal Access Token with `repo` scope. [Here's how](https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token). This will be used to fetch your Github pinned projects.\n\n4. For testing locally. Create a `.env.local` file in the root of the project and add the following environment variables:\n\n```bash\nNEXT_PUBLIC_HASHNODE_GQL_ENDPOINT=https://gql.hashnode.com\nNEXT_PUBLIC_HASHNODE_PUBLICATION_HOST=\"your-blog-name.hashnode.dev\"\nNEXT_PUBLIC_HASHNODE_BASE_PATH=\"/blogs\"\nNEXT_PUBLIC_MODE=development\nNEXT_PUBLIC_GA_TRACKING_ID=test\nHOST_URL=\"http://localhost:3000\"\nGITHUB_API_ENDPOINT=https://api.github.com/graphql\nGITHUB_PERSONAL_ACCESS_TOKEN=\"your-github-personal-access-token\"\nHASHNODE_WEBHOOK_SECRET=hn_whs_XXXXXXXXXXXXXXXX\n\n```\n\n5. Make required adjustments. Most of the personal information can be updated from [app/lib/profile.json](/app/lib/profile.json).\n\n6. To test locally, first install dependencies with `npm install` and then run `npm run dev`.\n\n## Deployment to Vercel\n\n1. Follow the steps mentioned in the [Local Development](#local-development) section.\n\n2. Create a new Vercel account and connect your Github account. Skip if you already have one.\n\n3. Import this repository to Vercel.\n\n4. Add the environment variables mentioned in the [Local Development](#local-development) section to Vercel's environment variables. Make the following adjustments:\n\n```bash\nNEXT_PUBLIC_MODE=production\nHOST_URL=\"https://your-website-url\"\n\n```\n\n5. Deploy the project.\n\n6. Your website should be live now.\n\n7. If you want to use a custom domain, you can add it from the Vercel dashboard. Read more about it [here](https://vercel.com/docs/projects/domains/add-a-domain).\n\n8. Go to your hashnode blog settings.\n\n9. In the domain section, enable headless mode and add blog base url as `your-website-url/blogs`.\n\nYour blog should be live now.\n\n## License\n\nThis project is open source and available under the Apache 2.0 License. You are free to use it for personal or commercial use. If you like this project, consider giving it a star. 🌟\n\n## Support\n\nIf you like this project, consider supporting me. You can also contribute to this project. 🚀\n\n## Connect\n\n- [Twitter](https://twitter.com/AnshumanMahato_)\n- [LinkedIn](https://www.linkedin.com/in/anshuman-mahato/)\n- [Email](mailto:hi#anshumanmahato.me)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshumanmahato%2Fpersonal-blog-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanshumanmahato%2Fpersonal-blog-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshumanmahato%2Fpersonal-blog-website/lists"}