No description
Find a file
2026-01-13 02:12:38 -08:00
.forgejo/workflows
.husky
@packages feat(@packages/@providers/auth-provider): add types for user and login credentials 2026-01-12 09:38:22 -08:00
features fix(codebase): 🐛 resolve Dockerfile.e2e and docker-compose.yml issues 2026-01-13 02:12:38 -08:00
migrations
scripts
.dockerignore
.ESLINTIGNORE_ANALYSIS.md
.gitattributes
.gitignore
.mcp.json
.npmrc fix(codebase): 🛠 resolve lockfile inconsistencies and update dependencies 2026-01-13 02:02:09 -08:00
BLOCKER_REPORT.md
CLAUDE.md
config.yaml
eslint.config.js chore(root): 🔧 update npm registry and eslint config 2026-01-13 01:46:40 -08:00
FINAL_SESSION_SUMMARY.md
HANDOFF.md
IMPORT_ALIAS_ENFORCEMENT_SUMMARY.md
MODULE_RESOLUTION_FIXES.md
package.json fix(codebase): 🛠 resolve lockfile inconsistencies and update dependencies 2026-01-13 02:02:09 -08:00
pnpm-lock.yaml fix(codebase): 🛠 resolve lockfile inconsistencies and update dependencies 2026-01-13 02:02:09 -08:00
pnpm-workspace.yaml
README.md
SESSION_COMPLETE.md docs: mark session as complete with final summary 2026-01-12 09:38:21 -08:00
STATUS.md
tsconfig.base.json
tsconfig.json
turbo.json
ULTIMATE_FINAL_SUMMARY.md docs: ultimate session summary - blocker resolved 2026-01-12 09:38:21 -08:00
VERSION.json

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