No description
Find a file
Quinn Ftw b5fe73edd0 feat(infra): database stack, reconciliation, and VPS setup scripts
- Add PostgreSQL + Redis deployment stack
- Add reconciliation framework for fleet management
- Add VPS setup scripts (nginx, wireguard)
- Add dev environment bootstrap scripts
- Update service-registry and systemd configs

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 00:37:52 -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 feat(packages): add host-inventory and registry-integration 2025-12-26 00:37:33 -08:00
features feat: add conversation-assistant, platform-admin, portal scaffolds 2025-12-26 00:37:40 -08:00
infrastructure feat(infra): database stack, reconciliation, and VPS setup scripts 2025-12-26 00:37:52 -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