Feature development E2E test
Go to file
rdev-worker 7efb3c73f6
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-task add-hello-endpoint T1
2026-02-03 03:08:28 +00:00
.claude
.githooks
.sdlc/features/add-hello-endpoint
apps
cli
packages
pkg
scripts
services
workers
.gitignore
.golangci.yml
.sdlc.ts
.woodpecker.yml
CLAUDE.md
docker-compose.yml
go.work
package.json
pnpm-workspace.yaml
Procfile
README.md

feat-dev-e2e3

Feature development E2E test

Quickstart

# Clone the repo
git clone https://git.threesix.ai/jordan/feat-dev-e2e3.git
cd feat-dev-e2e3

# Install dependencies
./scripts/install.sh

# Start local development
./scripts/dev.sh

Project Structure

feat-dev-e2e3/
├── services/     # Go API services
├── workers/      # Background workers
├── apps/         # Frontend applications
├── cli/          # CLI tools
├── packages/     # Shared TypeScript packages
├── pkg/          # Shared Go packages
└── scripts/      # Development scripts

Scripts

Script Description
./scripts/dev.sh Start local development environment
./scripts/install.sh Install all dependencies
./scripts/quality.sh Run quality checks on all components
./scripts/discover.sh List all components in the monorepo

Adding Components

Components are added via the rdev API:

# Add a Go service
curl -X POST $RDEV_API_URL/projects/feat-dev-e2e3/components \
  -H "X-API-Key: $RDEV_API_KEY" \
  -d '{"type": "service", "name": "auth-api"}'

# Add a React app
curl -X POST $RDEV_API_URL/projects/feat-dev-e2e3/components \
  -H "X-API-Key: $RDEV_API_KEY" \
  -d '{"type": "app", "name": "dashboard", "template": "app-react"}'