{"id":15162123,"url":"https://github.com/accessibility-cool/blog","last_synced_at":"2026-02-05T20:10:11.827Z","repository":{"id":262882311,"uuid":"887352607","full_name":"accessibility-cool/blog","owner":"accessibility-cool","description":"Our current blog/website built with SvelteKit.","archived":false,"fork":false,"pushed_at":"2026-01-26T22:41:00.000Z","size":861,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-27T09:41:37.857Z","etag":null,"topics":["a11y","accessibility","bits-ui","blog","directus","ghost","svelte","sveltekit"],"latest_commit_sha":null,"homepage":"https://accessibility.cool","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/accessibility-cool.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":"2024-11-12T15:43:44.000Z","updated_at":"2026-01-26T22:41:03.000Z","dependencies_parsed_at":"2024-11-14T20:26:42.855Z","dependency_job_id":"04252780-80b9-410e-a7b0-c471040e5895","html_url":"https://github.com/accessibility-cool/blog","commit_stats":{"total_commits":5,"total_committers":1,"mean_commits":5.0,"dds":0.0,"last_synced_commit":"393ad597fafe63673f567fe8193c9eb246429415"},"previous_names":["accessibility-cool/blog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/accessibility-cool/blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accessibility-cool%2Fblog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accessibility-cool%2Fblog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accessibility-cool%2Fblog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accessibility-cool%2Fblog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/accessibility-cool","download_url":"https://codeload.github.com/accessibility-cool/blog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accessibility-cool%2Fblog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29132810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T19:36:52.185Z","status":"ssl_error","status_checked_at":"2026-02-05T19:35:40.941Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["a11y","accessibility","bits-ui","blog","directus","ghost","svelte","sveltekit"],"created_at":"2024-09-27T01:06:37.061Z","updated_at":"2026-02-05T20:10:11.812Z","avatar_url":"https://github.com/accessibility-cool.png","language":"Svelte","readme":"# accessibility.cool Monorepo\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/e184e4e1-ce21-4a75-b597-f18c1d67bc68/deploy-status)](https://app.netlify.com/sites/a11y-cool/deploys)\n\n## Monorepo Tooling\n\nThis repository uses [PNPM](https://pnpm.io/) for fast, disk-efficient package management and [TurboRepo](https://turbo.build/) for high-performance monorepo task orchestration.\n\n- **Install dependencies:**\n\n    ```bash\n    pnpm install\n    ```\n\n- **Start development servers:**\n    ```bash\n    pnpm dev\n    ```\n    This runs all app and package dev servers in parallel using TurboRepo.\n\n## Repository Structure\n\n```\n.\n├── apps/\n│   ├── blog/\n│   └── ghost/\n├── packages/\n│   ├── data/\n│   ├── eslint-config/\n│   ├── typescript-config/\n│   ├── ui/\n│   └── utils/\n├── pnpm-workspace.yaml\n├── turbo.json\n└── ...\n```\n\n### Apps\n\n- **apps/blog**  \n  The main SvelteKit 5 blog application.\n\n    - Local dev: `pnpm dev` (from root)\n    - Production build: `pnpm build`\n    - Hosted on [Netlify](https://app.netlify.com/sites/a11y-cool/deploys) (see `apps/blog/netlify.toml` for config).\n\n- **apps/ghost**  \n  (Currently empty/reserved for future use or integration with Ghost CMS.)\n\n### Packages\n\n- **packages/data**  \n  Shared types and data utilities, including page/post types and default meta data. Used by the blog and UI packages.\n\n- **packages/ui**  \n  Shared Svelte UI components (Button, Header, Footer, Avatar, Navigation, Card, etc.) and styles for use across apps.\n\n- **packages/utils**  \n  General utility functions (e.g., `slugify`, `formatDate`) for use across the monorepo.\n\n- **packages/eslint-config**  \n  Centralized ESLint configuration for consistent code quality and linting across all packages and apps.\n\n- **packages/typescript-config**  \n  Shared TypeScript configuration for consistent type checking and build settings.\n\n## Development\n\n- **Start all dev servers:**\n\n    ```bash\n    pnpm dev\n    ```\n\n    This will start the development server for all apps (including the blog) using TurboRepo.\n\n- **Lint, build, and check types:**\n    ```bash\n    pnpm lint\n    pnpm build\n    pnpm check-types\n    ```\n\n## Deployment\n\n- **Blog app is deployed on Netlify:**  \n  The production build and deployment for the blog app is managed by Netlify.  \n  See the [Netlify dashboard](https://app.netlify.com/sites/a11y-cool/deploys) and `apps/blog/netlify.toml` for configuration.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccessibility-cool%2Fblog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faccessibility-cool%2Fblog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccessibility-cool%2Fblog/lists"}