https://github.com/accessibility-cool/blog
Our current blog/website built with SvelteKit.
https://github.com/accessibility-cool/blog
a11y accessibility bits-ui blog directus ghost svelte sveltekit
Last synced: 6 months ago
JSON representation
Our current blog/website built with SvelteKit.
- Host: GitHub
- URL: https://github.com/accessibility-cool/blog
- Owner: accessibility-cool
- License: other
- Created: 2024-11-12T15:43:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-09T07:13:21.000Z (7 months ago)
- Last Synced: 2025-07-09T08:29:21.596Z (7 months ago)
- Topics: a11y, accessibility, bits-ui, blog, directus, ghost, svelte, sveltekit
- Language: Svelte
- Homepage: https://accessibility.cool
- Size: 722 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# accessibility.cool Monorepo
[](https://app.netlify.com/sites/a11y-cool/deploys)
## Monorepo Tooling
This repository uses [PNPM](https://pnpm.io/) for fast, disk-efficient package management and [TurboRepo](https://turbo.build/) for high-performance monorepo task orchestration.
- **Install dependencies:**
```bash
pnpm install
```
- **Start development servers:**
```bash
pnpm dev
```
This runs all app and package dev servers in parallel using TurboRepo.
## Repository Structure
```
.
├── apps/
│ ├── blog/
│ └── ghost/
├── packages/
│ ├── data/
│ ├── eslint-config/
│ ├── typescript-config/
│ ├── ui/
│ └── utils/
├── pnpm-workspace.yaml
├── turbo.json
└── ...
```
### Apps
- **apps/blog**
The main SvelteKit 5 blog application.
- Local dev: `pnpm dev` (from root)
- Production build: `pnpm build`
- Hosted on [Netlify](https://app.netlify.com/sites/a11y-cool/deploys) (see `apps/blog/netlify.toml` for config).
- **apps/ghost**
(Currently empty/reserved for future use or integration with Ghost CMS.)
### Packages
- **packages/data**
Shared types and data utilities, including page/post types and default meta data. Used by the blog and UI packages.
- **packages/ui**
Shared Svelte UI components (Button, Header, Footer, Avatar, Navigation, Card, etc.) and styles for use across apps.
- **packages/utils**
General utility functions (e.g., `slugify`, `formatDate`) for use across the monorepo.
- **packages/eslint-config**
Centralized ESLint configuration for consistent code quality and linting across all packages and apps.
- **packages/typescript-config**
Shared TypeScript configuration for consistent type checking and build settings.
## Development
- **Start all dev servers:**
```bash
pnpm dev
```
This will start the development server for all apps (including the blog) using TurboRepo.
- **Lint, build, and check types:**
```bash
pnpm lint
pnpm build
pnpm check-types
```
## Deployment
- **Blog app is deployed on Netlify:**
The production build and deployment for the blog app is managed by Netlify.
See the [Netlify dashboard](https://app.netlify.com/sites/a11y-cool/deploys) and `apps/blog/netlify.toml` for configuration.