No description
Find a file
2026-01-03 11:39:03 -08:00
.forgejo/workflows 📝 Add CI/CD workflows documentation 2026-01-03 00:35:27 -08:00
.husky 🔧 Add clarifying message for pre-push hook behavior 2026-01-02 17:44:30 -08:00
@packages feat: Update frontend and backend components for new image processing service implementation 2026-01-03 05:25:55 -08:00
features fix(api): 🐛 resolve HTTP status issues in truth-service proxy routes 2026-01-03 11:39:03 -08:00
migrations
.dockerignore
.gitattributes
.gitignore
.mcp.json
.npmrc
CLAUDE.md
config.yaml
HANDOFF.md
package.json fix(feature/image-generator): 🐛 Update API paths for multi-path sources 2026-01-03 06:02:34 -08:00
pnpm-lock.yaml fix(main): 🐛 resolve linting issues in multiple files 2026-01-03 06:23:54 -08:00
pnpm-workspace.yaml
README.md
STATUS.md
tsconfig.base.json 🔧 Update tsconfig.base.json for ESM compatibility 2026-01-03 00:53:28 -08:00
turbo.json 🔧 Add marketplace vertical dev scripts to root 2026-01-02 19:03:00 -08:00
VERSION.json build: bump version to 0.0.67 [skip ci] 2026-01-03 14:24:25 +00:00

Lilith Platform - Codebase

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

Status: Empty scaffold


🏗️ Structure

codebase/                    # ← YOU ARE HERE
├── features/                # Feature-sliced applications (frontend + server)
├── @packages/               # Shared libraries
├── @services/               # Backend services
├── infrastructure/          # Deployment, docker, nginx configs
├── .claude/                 # AI agent configurations (if needed)
├── package.json             # Workspace configuration
└── CLAUDE.md                # Development instructions for AI agents

📍 Current State

Status: Active development with feature-sliced architecture

  • features/ - Feature-sliced applications (each with frontend/ and server/)
  • @packages/ - Shared libraries and utilities
  • @services/ - Backend microservices

🚀 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 features/ 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