Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,11 @@ dist
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
.vite/
.vercel

# vercel
.vercel/

# zpress
.zpress/content/
.zpress/dist/
.zpress/cache/
22 changes: 22 additions & 0 deletions .zpress/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# .zpress

This directory is managed by zpress. It contains the
materialized documentation site — synced content, build artifacts, and static assets.

| Directory | Description |
| ----------- | ---------------------------------------------- |
| `content/` | Synced markdown pages and generated config |
| `public/` | Static assets (logos, icons, banners) |
| `dist/` | Build output |
| `cache/` | Build cache |

## Commands

```bash
zpress sync # Sync docs into content/
zpress dev # Start dev server
zpress build # Build static site
```

> **Do not edit files in `content/`** — they are regenerated on every sync.
> Edit the source markdown in your workspace packages instead.
98 changes: 98 additions & 0 deletions .zpress/public/banner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions .zpress/public/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions .zpress/public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion contributing/guides/developing-a-feature.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Ship a feature end-to-end: branch, code, test, changeset, PR, and merge.
## Prerequisites

- Local environment set up (see [Getting Started](./getting-started.md))
- Familiarity with relevant [standards](../README.md)
- Familiarity with relevant [standards](https://github.com/joggrdocs/kidd/blob/main/contributing/README.md)

## Steps

Expand Down
6 changes: 3 additions & 3 deletions contributing/guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pnpm test

Read the project docs in this order:

1. [`CLAUDE.md`](../../CLAUDE.md) -- tech stack, project structure, available commands
1. [`CLAUDE.md`](https://github.com/joggrdocs/kidd/blob/main/CLAUDE.md) -- tech stack, project structure, available commands
2. [`contributing/concepts/architecture.md`](../concepts/architecture.md) -- system layers, packages, and data flow
3. [`contributing/concepts/cli.md`](../concepts/cli.md) -- commands, context, middleware, and error flow
4. Relevant standards in [`contributing/standards/`](../standards/) as needed
Expand Down Expand Up @@ -97,5 +97,5 @@ pnpm install
## References

- [Architecture](../concepts/architecture.md)
- [CONTRIBUTING.md](../../CONTRIBUTING.md)
- [CLAUDE.md](../../CLAUDE.md)
- [CONTRIBUTING.md](https://github.com/joggrdocs/kidd/blob/main/CONTRIBUTING.md)
- [CLAUDE.md](https://github.com/joggrdocs/kidd/blob/main/CLAUDE.md)
Loading
Loading