No description
Find a file
2026-01-10 06:15:40 -08:00
.forgejo/workflows
.husky
@packages feat(@packages/@infrastructure/sso-client/src/types): add user types and role 2026-01-10 06:15:40 -08:00
features feat(@packages/@infrastructure/sso-client/src/types): add user types and role 2026-01-10 06:15:40 -08:00
migrations
scripts
.dockerignore
.ESLINTIGNORE_ANALYSIS.md
.gitattributes
.gitignore
.mcp.json
.npmrc fix(npmrc): 🐛 update pnpm configuration for NestJS compatibility 2026-01-09 11:22:19 -08:00
CLAUDE.md
config.yaml
HANDOFF.md
package.json feat(@packages/@infrastructure/image-security): update image-processor service references 2026-01-10 04:46:05 -08:00
pnpm-lock.yaml fix(pnpm-lock.yaml): 🛠 resolve version conflicts in dependencies 2026-01-10 05:28:34 -08:00
pnpm-workspace.yaml
README.md
STATUS.md
tsconfig.base.json
turbo.json
VERSION.json build: bump version to 0.0.333 [skip ci] 2026-01-10 14:14:58 +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