Skip to content

Commit 176de96

Browse files
committed
chore: bruh
1 parent 9b2fb16 commit 176de96

File tree

10 files changed

+948
-10
lines changed

10 files changed

+948
-10
lines changed

.ralphy/config.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Ralphy Configuration
2+
# https://github.com/michaelshimeles/ralphy
3+
4+
# Project info (auto-detected, edit if needed)
5+
project:
6+
name: "zagora"
7+
language: "TypeScript"
8+
framework: "tanstack-react-start"
9+
description: "implement docs with fumadocs tanstack start app" # Add a brief description
10+
11+
# Commands (auto-detected from package.json/pyproject.toml)
12+
commands:
13+
test: ""
14+
lint: ""
15+
build: ""
16+
17+
# Rules - instructions the AI MUST follow
18+
# These are injected into every prompt
19+
rules: []
20+
# Examples:
21+
- "Read the README.md on the root folder"
22+
- "Always use TypeScript strict mode"
23+
- "Always use bun"
24+
- "never run the dev server, eg. no bun run dev!"
25+
26+
# - "Follow the error handling pattern in src/utils/errors.ts"
27+
# - "All API endpoints must have input validation with Zod"
28+
# - "Use server actions instead of API routes in Next.js"
29+
30+
# Boundaries - files/folders the AI should not modify
31+
boundaries:
32+
never_touch: []
33+
# Examples:
34+
# - "src/legacy/**"
35+
# - "migrations/**"
36+
# - "*.lock"

.ralphy/progress.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ralphy Progress Log
2+

TASKS.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,20 @@ This document outlines the tasks required to set up Fumadocs documentation for t
99
- [x] Create `apps/docs/` directory with proper structure
1010
- [x] Initialize Next.js project with TypeScript in `apps/docs/`
1111
- [x] Configure Fumadocs packages and dependencies
12-
- [x] Add `apps/docs` to bun workspaces in root `package.json`
13-
- [x] Set up Tailwind CSS and shadcn/ui components
12+
- [x] Add `apps/docs` to bun workspaces in root `package.json`
1413

1514
### 1.2 Fumadocs Configuration
1615
- [ ] Create `apps/docs/fumadocs.config.ts` with basic configuration
1716
- [ ] Set up MDX configuration with syntax highlighting (Shiki)
1817
- [ ] Configure content source and file structure
1918
- [ ] Set up navigation structure
2019
- [ ] Configure theme and layout components
21-
22-
### 1.3 Development Environment
23-
- [ ] Add development scripts to `apps/docs/package.json`
24-
- [ ] Configure build scripts for production deployment
25-
- [ ] Set up linting and formatting (Biome)
26-
- [ ] Test local development server setup
27-
20+
2821
## Phase 2: Content Conversion
2922

3023
### 2.1 Front Page Design
3124
- [ ] Create homepage with hero section
32-
- [ ] Design highlights section with card components (11 highlights from README)
25+
- [ ] Design highlights section with card components (11 highlights from README). Don't copy paste them exactly! Make them 2-3 sentences each since in cards there's more room
3326
- [ ] Add features overview section
3427
- [ ] Create comparison tables (3 separate tables):
3528
- Zagora vs oRPC/tRPC/neverthrow/effect.ts

apps/.gitkeep

Whitespace-only changes.

apps/docs/biome.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
3+
"vcs": {
4+
"enabled": true,
5+
"clientKind": "git",
6+
"useIgnoreFile": true
7+
},
8+
"files": {
9+
"ignoreUnknown": true,
10+
"includes": [
11+
"**",
12+
"!node_modules",
13+
"!.source"
14+
]
15+
},
16+
"formatter": {
17+
"enabled": true,
18+
"indentStyle": "space",
19+
"indentWidth": 2
20+
},
21+
"linter": {
22+
"enabled": true,
23+
"rules": {
24+
"recommended": true
25+
},
26+
"domains": {
27+
"react": "recommended"
28+
}
29+
},
30+
"assist": {
31+
"actions": {
32+
"source": {
33+
"organizeImports": "on"
34+
}
35+
}
36+
}
37+
}

0 commit comments

Comments
 (0)