{"id":15928554,"url":"https://github.com/ianrose/machinist","last_synced_at":"2026-02-16T15:02:38.444Z","repository":{"id":52165615,"uuid":"66644723","full_name":"ianrose/machinist","owner":"ianrose","description":"An opinionated boilerplate for Metalsmith.","archived":false,"fork":false,"pushed_at":"2022-12-06T20:06:57.000Z","size":562,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-05T15:30:14.716Z","etag":null,"topics":["google-docs","metalsmith","static-site"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ianrose.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-08-26T12:08:16.000Z","updated_at":"2017-01-25T13:21:47.000Z","dependencies_parsed_at":"2023-01-23T15:00:56.959Z","dependency_job_id":null,"html_url":"https://github.com/ianrose/machinist","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ianrose/machinist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianrose%2Fmachinist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianrose%2Fmachinist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianrose%2Fmachinist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianrose%2Fmachinist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ianrose","download_url":"https://codeload.github.com/ianrose/machinist/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianrose%2Fmachinist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29510522,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T09:05:14.864Z","status":"ssl_error","status_checked_at":"2026-02-16T08:55:59.364Z","response_time":115,"last_error":"SSL_read: 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":["google-docs","metalsmith","static-site"],"created_at":"2024-10-06T23:41:07.634Z","updated_at":"2026-02-16T15:02:38.427Z","avatar_url":"https://github.com/ianrose.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/ianrose/machinist/master/LICENSE)\n\n# Machinist\n\nAn opinionated boilerplate for a [Metalsmith](http://www.metalsmith.io/) static site.\n\n- [Handlebars](http://handlebarsjs.com/)\n- [StandardJS](https://github.com/feross/standard)\n- [Sass](https://github.com/sass/sass)\n- [Stylelint Standard](https://github.com/stylelint/stylelint-config-standard)\n- [Webpack](https://github.com/christophercliff/metalsmith-webpack)\n- [Autoprefixer](https://github.com/postcss/autoprefixer)\n- [HTMLHint](https://github.com/yaniswang/HTMLHint)\n- [Editorconfig](http://editorconfig.org/)\n\n## Features\n\n- Add structured data globally in JSON or YAML in the `./src/globaldata/`\n- Add structured data to a specific Markdown file by adding in the frontmatter `model: file_name.json`, with `file_name.json` living in `./src/models/`\n\n## Requirements\n\n[node.js](https://nodejs.org/en/)\n\n## How to Setup\n\n### 1. Clone\n\n```\ngit clone https://github.com/ianrose/machinist.git\n```\n\n### 2. Install Dependencies\n\n```\n$ npm install\n```\n### 3. Configure Project\n\nEdit the `./config.json` as you see fit.\n\n```json\n{\n  \"name\": \"Person or Org\",\n  \"title\": \"Global Title\",\n  \"titleSeperator\": \"|\",\n  \"domain\": \"blank.org\",\n  \"url\": \"http://blank.org\",\n  \"description\": \"Global Description\",\n  \"keywords\": null,\n  \"dest\": \"./www/\",\n  \"src\": \"./src/\",\n  \"assetPath\": {\n    \"development\": \"/\",\n    \"stage\": \"/\",\n    \"production\": \"/\"\n  },\n  \"googleVerification\": null,\n  \"analytics\": {\n    \"provider\": false,\n    \"google\": {\n      \"trackingId\": \"GA-######\"\n    }\n  },\n  \"twitter\": {\n    \"username\": \"@username\"\n  },\n  \"facebook\": {\n    \"username\": null,\n    \"appId\": null,\n    \"publisher\": null\n  },\n  \"openGraph\": {\n    \"image\": null\n  },\n  \"googleDocJson\": {\n    \"fileId\": null,\n    \"output\": \"./src/data/models/archieExample.json\"\n  }\n}\n```\n\n## How to use\n\n### Develop\n\nRuns your project locally at `localhost:3000` with BrowserSync. Edit contents of `./layouts`, `./lib`, `./partials`, and `./src`.\n\n```\nnpm run dev\n```\n\nDevelop with Metalsmith debugging.\n\n```\nnpm run debug\n``` \n\n### Build\n\nGenerates your dist to be deployed in the folder `./www`.\n\n```\nnpm run build\n```\n\n### Lint\n\nLints your styles, scripts, and markup.\n\n```\nnpm run lint\n```\n\n### Format\n\nFix lint errors in your styles and scripts.\n\n```\nnpm run format\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fianrose%2Fmachinist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fianrose%2Fmachinist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fianrose%2Fmachinist/lists"}