{"id":22726045,"url":"https://github.com/superwalnut/hugo-site-deploy-to-netlify-example","last_synced_at":"2025-08-02T20:33:07.449Z","repository":{"id":119283693,"uuid":"278005677","full_name":"superwalnut/hugo-site-deploy-to-netlify-example","owner":"superwalnut","description":"hugo blog static site engine to build a resume site and deploy to netlify","archived":false,"fork":false,"pushed_at":"2020-07-15T05:46:39.000Z","size":2179,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-14T05:07:26.732Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","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/superwalnut.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}},"created_at":"2020-07-08T06:14:08.000Z","updated_at":"2020-07-17T00:44:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"1f8e13ac-42a9-4c25-bded-5ba93177be5b","html_url":"https://github.com/superwalnut/hugo-site-deploy-to-netlify-example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/superwalnut/hugo-site-deploy-to-netlify-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superwalnut%2Fhugo-site-deploy-to-netlify-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superwalnut%2Fhugo-site-deploy-to-netlify-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superwalnut%2Fhugo-site-deploy-to-netlify-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superwalnut%2Fhugo-site-deploy-to-netlify-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/superwalnut","download_url":"https://codeload.github.com/superwalnut/hugo-site-deploy-to-netlify-example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superwalnut%2Fhugo-site-deploy-to-netlify-example/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268448362,"owners_count":24252019,"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","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"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":"2024-12-10T16:15:34.145Z","updated_at":"2025-08-02T20:33:07.424Z","avatar_url":"https://github.com/superwalnut.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"full article read: https://medium.com/@mrkevin.wang/create-a-web-personal-profile-page-with-hugo-blog-netlify-for-free-9d2b19a83da1\n\n# hugo-blog-netlify-resume\nThis is a example of using Hugo blog to create a resume site on netlify\n\n# Installing Hugo\n\n## MacOS\nbrew install hugo\n\n## Windows\nchoco install hugo -confirm\n\n# installing url\nhttps://gohugo.io/getting-started/installing/\n\n# check hugo version\nhugo version\n\n# create a sample blog\nhugo new site hugo-netlify-resume\n\n# add a theme and copy it to the sample blog\ngit clone git@github.com:aerohub/hugo-orbit-theme.git\n\nrsync -r --exclude '.git' hugo-orbit-theme hugo-netlify-resume/themes/ \n\n# update the example config to our sample blog\ncopy the themes/orbit/exampleSite/config.toml to the root folder or replace content with it.\n\n# add a test.md in content folder\nthis is where you can publish blog posts by using markdown formats.\n\n# init git repo and set remote\ncd hugo-netlify-resume\n\ngit init\n\ngit add .\n\ngit commit -m \"create blog and add theme\"\n\ngit remote add origin git@github.com:superwalnut/hugo-netlify-resume.git\ngit push -u origin master\n\n# run hugo locally\nhugo server -w\n\n# local url\nhttp://localhost:1313/\n\n# statistics\n                   | EN\n-------------------+-----\n  Pages            |  4\n  Paginator pages  |  0\n  Non-page files   |  0\n  Static files     | 98\n  Processed images |  0\n  Aliases          |  0\n  Sitemaps         |  1\n  Cleaned          |  0\n\n\n# create site in netlify and connect to your github repository.\n\nyou can get one free site published in netlify with free plan.\n\nSites -\u003e New site from git -\u003e Select GitHub (for this case) -\u003e Authorize netlify api for access your repository -\u003e select the repository and branch to deploy to netlify\n\n\n# add custom domain\nyou can add a custom domain and apply ssl certificate at netlify as well. It is fairly straight forward.\n\n#  config update site url\nset baseurl = \"https://modest-newton-b02ee3.netlify.app/\" in config.toml\n\n\n----\n\n# using netlify cli\nnpm install netlify-cli -g\n\n# login to netlify, this will redirect you to login and Once authorized, Netlify CLI will store your access token in your home folder, under .netlify/config.json. Netlify CLI will use the token in this location automatically for all future commands.\nnetlify login\n\n# netlify status to view your current user and status\nnetlify status\n\n# netlify init to connect to your repository and create a site on netlify\nnetlify init\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperwalnut%2Fhugo-site-deploy-to-netlify-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuperwalnut%2Fhugo-site-deploy-to-netlify-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperwalnut%2Fhugo-site-deploy-to-netlify-example/lists"}