{"id":49786168,"url":"https://github.com/vojtechmares/devopsglossary","last_synced_at":"2026-05-12T01:13:16.075Z","repository":{"id":345821565,"uuid":"972687725","full_name":"vojtechmares/devopsglossary","owner":"vojtechmares","description":"DevOps Glossary project repository","archived":false,"fork":false,"pushed_at":"2026-03-20T21:09:00.000Z","size":902,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-21T11:45:22.319Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://devopsglossary.com","language":"TypeScript","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/vojtechmares.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":"2025-04-25T13:44:11.000Z","updated_at":"2026-03-20T21:09:04.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/vojtechmares/devopsglossary","commit_stats":null,"previous_names":["vojtechmares/devopsglossary"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/vojtechmares/devopsglossary","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vojtechmares%2Fdevopsglossary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vojtechmares%2Fdevopsglossary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vojtechmares%2Fdevopsglossary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vojtechmares%2Fdevopsglossary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vojtechmares","download_url":"https://codeload.github.com/vojtechmares/devopsglossary/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vojtechmares%2Fdevopsglossary/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32919238,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-11T17:09:15.040Z","status":"ssl_error","status_checked_at":"2026-05-11T17:08:45.420Z","response_time":120,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2026-05-12T01:13:15.446Z","updated_at":"2026-05-12T01:13:16.068Z","avatar_url":"https://github.com/vojtechmares.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevOps Glossary\n\nThe Urban Dictionary for DevOps — a curated glossary of 108+ DevOps terms, explained with clarity and a bit of personality.\n\n**Live site:** [devopsglossary.com](https://devopsglossary.com)\n\n## Tech Stack\n\n- [Astro](https://astro.build) — static site generation with on-demand rendering\n- [React](https://react.dev) — interactive UI components\n- [TypeScript](https://www.typescriptlang.org) — type safety\n- [Tailwind CSS v4](https://tailwindcss.com) — styling\n- [Vitest](https://vitest.dev) — testing\n- Custom Node.js server (`@astrojs/node` adapter)\n\n## Prerequisites\n\n- Node.js \u003e= 22.12.0\n- [pnpm](https://pnpm.io)\n\n## Getting Started\n\n```bash\npnpm install\npnpm dev          # Start dev server\npnpm build        # Production build\npnpm start        # Run production server\npnpm new          # Create a new glossary term\npnpm test         # Run tests\npnpm test:watch   # Run tests in watch mode\n```\n\n## Project Structure\n\n```\nsrc/\n├── components/       # React and Astro components\n├── content.config.ts # Content collection schema\n├── data/terms/       # Glossary term files (.md)\n├── layouts/          # Page layouts\n├── pages/            # Astro routes\n├── server.ts         # Custom Node.js server\n└── styles/           # Global styles\ndeploy/k8s/           # Helm chart for Kubernetes deployment\n.github/workflows/    # CI/CD pipeline\n```\n\n## Adding a Glossary Term\n\nThe easiest way to add a term is with the interactive script:\n\n```bash\npnpm new\n```\n\nIt will prompt for all required fields, validate your input, and generate the file.\n\nAlternatively, create a new `.md` file in `src/data/terms/` manually:\n\n```markdown\n---\ntitle: My Term\nslug: my-term\ndescription: \"A short description (max 160 characters).\"\nrelatedTerms:\n  - some-other-term\ntags:\n  - relevant-tag\ncategory: tool\ndateAdded: 2026-01-01\n---\n\nYour explanation here. Be clear, be useful, have fun with it.\n```\n\n### Frontmatter Fields\n\n| Field | Required | Description |\n|---|---|---|\n| `title` | Yes | Display name |\n| `slug` | Yes | URL path segment |\n| `description` | Yes | Short description (max 160 chars, used for SEO) |\n| `abbreviation` | No | Common abbreviation (e.g., \"K8s\") |\n| `relatedTerms` | No | Array of slugs linking to other terms |\n| `tags` | No | Array of tags for categorization |\n| `category` | Yes | One of: `methodology`, `tool`, `platform`, `concept`, `operating-system`, `practice`, `observability` |\n| `dateAdded` | No | Date the term was added |\n\n## Deployment\n\n### Docker\n\n```bash\ndocker build -t devopsglossary .\ndocker run -p 8080:8080 devopsglossary\n```\n\n### Kubernetes\n\nA Helm chart is provided in `deploy/k8s/`:\n\n```bash\nhelm install devopsglossary deploy/k8s/ -f deploy/k8s/values.production.yaml\n```\n\n### CI/CD\n\nGitHub Actions workflow in `.github/workflows/main.yml` handles build and deployment.\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvojtechmares%2Fdevopsglossary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvojtechmares%2Fdevopsglossary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvojtechmares%2Fdevopsglossary/lists"}