{"id":15002309,"url":"https://github.com/lbliii/milodocs","last_synced_at":"2026-01-16T04:04:11.158Z","repository":{"id":209328492,"uuid":"720794055","full_name":"lbliii/milodocs","owner":"lbliii","description":"MiloDocs Hugo Theme for Docs Eng \u0026 Tech Writers","archived":false,"fork":false,"pushed_at":"2025-09-27T14:41:31.000Z","size":7603,"stargazers_count":5,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-27T16:13:08.022Z","etag":null,"topics":["algolia","chatgpt","docs-as-code","docs-site","hugo","hugo-site","hugo-theme","jamstack","rag-embeddings","tailwindcss","technicalwriter","technicalwriting","techwriter","techwriting","vanilla-javascript"],"latest_commit_sha":null,"homepage":"https://milodocs-theme.netlify.app/","language":"CSS","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/lbliii.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,"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":"2023-11-19T16:14:16.000Z","updated_at":"2025-09-24T03:36:11.000Z","dependencies_parsed_at":"2024-01-19T02:16:30.639Z","dependency_job_id":"8e9e5651-7184-4cc3-a2a6-07fdb267f234","html_url":"https://github.com/lbliii/milodocs","commit_stats":null,"previous_names":["lbliii/milo-theme","lbliii/milodocs"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/lbliii/milodocs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lbliii%2Fmilodocs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lbliii%2Fmilodocs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lbliii%2Fmilodocs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lbliii%2Fmilodocs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lbliii","download_url":"https://codeload.github.com/lbliii/milodocs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lbliii%2Fmilodocs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"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":["algolia","chatgpt","docs-as-code","docs-site","hugo","hugo-site","hugo-theme","jamstack","rag-embeddings","tailwindcss","technicalwriter","technicalwriting","techwriter","techwriting","vanilla-javascript"],"created_at":"2024-09-24T18:49:32.942Z","updated_at":"2026-01-16T04:04:11.137Z","avatar_url":"https://github.com/lbliii.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MiloDocs\n\n## Features\n\n- **native chatGPT UI**\n- **native Algolia UI**\n\n## Installation\n\n### Quickstart (macOS)\n\n1. Copy and paste this into your terminal to install the theme as a git submodule and copy the default configs.\n   ```s\n   brew install hugo \n   site_name=\"milodocs_$(date +%s%N | md5sum | head -c 8)\"\n   hugo new site \"$site_name\"\n   cd \"$site_name\"\n   git init\n   git submodule add https://github.com/lbliii/milodocs themes/milodocs\n   mkdir config/\n   cp -r themes/milodocs/exampleSite/config/* config/\n   rm config/_default/security.yaml\n   rm hugo.toml\n   git add .\n   git commit -m \"Initial commit\"\n   hugo server -D -p 1313\n   ```\n2. Open [localhost:1313](localhost:1313)\n3. Create your first markdown directory under `content/` (for example, `content/get-started`).\n4. Add an `_index.md` file with the following frontmatter:\n   ```yaml\n   ---\n   title:\n   description:\n   weight:\n   ---\n   ```\n5. Check your site to see it displayed.\n\nGetting from 0 to 1 takes ~5 minutes. \n\n### 1.Install Hugo\n\n```bash\nbrew install hugo\n```\nSee Hugo Docs for more options:\n- [MacOS](https://gohugo.io/installation/macos/)\n- [Linux](https://gohugo.io/installation/linux/)\n- [Windows](https://gohugo.io/installation/windows/)\n\n### 2. Create a new site \n\n```s\nhugo new site \u003csiteName\u003e\n```\n\n### 3.Install this project\n\n1. Open your `\u003csiteName\u003e` project directory.\n2. Navigate to the `themes/` directory. \n3. Run the following command:\n\n   ```bash\n   gh repo clone lbliii/milodocs\n   ```\n\n### 4. Add theme to config\n\n```s\nbaseURL = 'https://example.org/'\nlanguageCode = 'en-us'\ntitle = 'My New Hugo Site'\ntheme = 'milodocs'\n```\n\n### 5. Init repo\n\nTime to start saving your progress! \n1. Run the following:\n   ```s\n   git init\n   ```\n2. Add a comment.\n3. Push your new site and theme to your remote git repo.\n\n### 6. Deploy locally \n\n1. Navigate into the `siteName` repo.\n2. Run the following:\n   ```s\n   hugo server\n   ```\n3. Open localhost (typically [localhost:1313](http://localhost:1313)).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flbliii%2Fmilodocs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flbliii%2Fmilodocs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flbliii%2Fmilodocs/lists"}