{"id":26066245,"url":"https://github.com/thatmlopsguy/thatmlopsguy.github.io","last_synced_at":"2026-02-09T08:04:14.765Z","repository":{"id":237718616,"uuid":"795076887","full_name":"thatmlopsguy/thatmlopsguy.github.io","owner":"thatmlopsguy","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-19T15:59:46.000Z","size":4963,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-19T17:44:57.822Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://thatmlopsguy.github.io/","language":"Makefile","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/thatmlopsguy.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}},"created_at":"2024-05-02T14:37:07.000Z","updated_at":"2025-08-19T15:59:34.000Z","dependencies_parsed_at":"2024-05-27T17:50:14.582Z","dependency_job_id":"3ee3f82e-1306-4af7-a2da-2f9abba89ffb","html_url":"https://github.com/thatmlopsguy/thatmlopsguy.github.io","commit_stats":null,"previous_names":["thatmlopsguy/thatmlopsguy.github.io"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thatmlopsguy/thatmlopsguy.github.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatmlopsguy%2Fthatmlopsguy.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatmlopsguy%2Fthatmlopsguy.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatmlopsguy%2Fthatmlopsguy.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatmlopsguy%2Fthatmlopsguy.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thatmlopsguy","download_url":"https://codeload.github.com/thatmlopsguy/thatmlopsguy.github.io/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatmlopsguy%2Fthatmlopsguy.github.io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271506953,"owners_count":24771821,"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-21T02:00:08.990Z","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":"2025-03-08T20:20:49.750Z","updated_at":"2026-02-09T08:04:14.760Z","avatar_url":"https://github.com/thatmlopsguy.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# That MLOps Guy Blog\n\nThis is the repository for my personal website built with [Hugo](https://gohugo.io/), a fast static site generator written in Go.\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- [Git](https://git-scm.com/)\n- [Hugo](https://gohugo.io/installation/) (for local development)\n- [Docker](https://docs.docker.com/get-docker/) (alternative for local development)\n\n### Clone the Repository\n\n```bash\ngit clone --recurse-submodules https://github.com/thatmlopsguy/thatmlopsguy.github.io.git\ncd thatmlopsguy.github.io\n```\n\nIf you've already cloned the repository without submodules, initialize them:\n\n```bash\ngit submodule update --init --recursive\n```\n\n## 🛠️ Development\n\n### Option 1: Using Hugo (Recommended)\n\n1. Install Hugo on your system following the [official installation guide](https://gohugo.io/installation/)\n\n2. Start the development server:\n\n   ```bash\n   hugo serve\n   ```\n\n3. Open your browser and navigate to `http://localhost:1313`\n\n### Option 2: Using Docker\n\n1. Set the Hugo version (optional, defaults to latest):\n\n   ```bash\n   export HUGO_VERSION=0.119.0\n   ```\n\n2. Start the development server using Docker Compose:\n\n   ```bash\n   make docs-serve\n   # or\n   docker compose up -d\n   ```\n\n3. Open your browser and navigate to `http://localhost:1313`\n\n## 📁 Project Structure\n\n```text\n├── archetypes/        # Content templates\n├── content/           # All content files\n│   ├── posts/         # Blog posts\n│   └── notes/         # Notes and quick thoughts\n├── data/              # Data files (JSON, YAML, TOML)\n├── layouts/           # Custom layout files\n├── static/            # Static assets (images, files)\n├── themes/            # Hugo themes\n│   └── cactus2/       # Current theme (git submodule)\n├── docker-compose.yml # Docker development setup\n├── hugo.toml          # Hugo configuration\n└── Makefile           # Build commands\n```\n\n## ✍️ Creating Content\n\n### New Blog Post\n\n```bash\nhugo new posts/my-new-post.md\n```\n\n### New Note\n\n```bash\nhugo new notes/my-new-note.md\n```\n\n## 🚀 Deployment\n\nThis site is automatically deployed to GitHub Pages when changes are pushed to the `main` branch.\n\n## 🎨 Theme\n\nThis site uses the [Cactus2](https://github.com/thatmlopsguy/hugo-theme-cactus2) theme, which is included as a git submodule.\n\n## 📝 Available Commands\n\nRun `make help` to see all available commands:\n\n```bash\nmake help\n```\n\n## 🤝 Contributing\n\nFeel free to open issues or submit pull requests if you find any problems or have suggestions for improvements.\n\n## 📄 License\n\nThis project is licensed under the terms specified in the [LICENSE](LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatmlopsguy%2Fthatmlopsguy.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthatmlopsguy%2Fthatmlopsguy.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatmlopsguy%2Fthatmlopsguy.github.io/lists"}