No description
Find a file
Quinn Ftw 6331ec12ea fix(status-dashboard): add migrations, rename VPS→Host API
Root cause fixes for Apricot showing as "down":
- Create TypeORM migrations (production mode requires them)
- Tables: vps_resource_snapshots, docker_container_snapshots,
  docker_events, container_dependencies
- Add data-source.ts for TypeORM CLI operations

API naming alignment (host isn't a VPS):
- Rename /api/health/vps → /api/health/resources
- Rename VPSResourcesDto → HostResourcesDto
- Rename vps-resources.dto.ts → host-resources.dto.ts

Infrastructure:
- Add Dockerfile with curl, ca-certificates for health checks
- Add npm migration scripts to package.json

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 00:29:27 -08:00
.claude docs: Adapt .claude documentation for lilith-platform structure 2025-12-23 18:46:45 -08:00
.husky fix(status-dashboard): always install deps before build in pre-push 2025-12-25 17:10:12 -08:00
@packages fix(service-registry): add ThemeProvider to fix styled-components theme error 2025-12-25 22:48:20 -08:00
features/status-dashboard fix(status-dashboard): add migrations, rename VPS→Host API 2025-12-26 00:29:27 -08:00
infrastructure feat(service-registry): deploy to VPS with internal network auth bypass 2025-12-25 23:38:39 -08:00
.dockerignore chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
.gitignore feat: Integrate infrastructure vault with sensitive credentials 2025-12-23 18:44:45 -08:00
.mcp.json chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
.npmrc chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
CLAUDE.md docs: Adapt .claude documentation for lilith-platform structure 2025-12-23 18:46:45 -08:00
package.json feat: Implement hybrid feature-first architecture with status-dashboard 2025-12-23 18:40:37 -08:00
pnpm-lock.yaml fix: Update better-sqlite3 to ^11.0.0 for Node.js 24 compatibility 2025-12-24 21:54:44 -08:00
pnpm-workspace.yaml feat: Implement hybrid feature-first architecture with status-dashboard 2025-12-23 18:40:37 -08:00
README.md docs: Adapt .claude documentation for lilith-platform structure 2025-12-23 18:46:45 -08:00
tsconfig.base.json chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
turbo.json chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
VERSION.json build: increment version to 0.0.3 2025-12-25 20:57:39 -08:00

Lilith Platform - Codebase

Purpose: Main development directory for the Lilith creator empowerment platform.

Status: Empty scaffold


🏗️ Structure

codebase/                    # ← YOU ARE HERE
├── @apps/                   # Application packages (empty)
├── @packages/               # Shared libraries (empty)
├── @services/               # Backend services (empty)
├── .claude/                 # AI agent configurations (if needed)
├── package.json             # Workspace configuration (to be created)
└── CLAUDE.md                # Development instructions for AI agents

📍 Current State

Status: Empty - No code, no packages, no services

  • @apps/ - Empty
  • @packages/ - Empty
  • @services/ - Empty

🚀 Getting Started

When You're Ready to Build

  1. Create workspace configuration:

    # Add package.json for monorepo
    # Add pnpm-workspace.yaml for workspace packages
    # Add tsconfig.base.json for TypeScript
    
  2. Create your first package:

    # Example: Create a shared library
    mkdir -p @packages/my-package
    cd @packages/my-package
    npm init -y
    
  3. Add applications and services as needed in @apps/ and @services/


📖 Documentation

For workspace-level overview, see ../README.md

For AI agent instructions, see CLAUDE.md


Last Updated: 2025-12-23 Status: Empty scaffold - ready for first code