No description
Find a file
2026-01-10 10:24:53 +00:00
.forgejo/workflows 📝 Add CI/CD workflows documentation 2026-01-03 00:35:27 -08:00
.husky fix(shared): 🐛 fix: 🐛 validate locale changes and prevent same-sex or duo filters 2026-01-04 07:21:06 -08:00
@packages fix(codebase): 🐛 🛑 resolve unnecessary deletions in commit diff 2026-01-10 02:07:33 -08:00
features feat(frontend): update test and component files for conversation assistant training and processing pages 2026-01-10 02:16:23 -08:00
migrations 🔧 Fix all references after directory renames 2025-12-31 18:11:32 -08:00
scripts chore(shared): 🔧 Hello! I'm a mock assistant responding to your message. 2026-01-05 12:19:24 -08:00
.dockerignore fix(codebase/main): 🛠 resolve package version conflicts in pnpm-lock.yaml 2026-01-04 22:04:33 -08:00
.ESLINTIGNORE_ANALYSIS.md feat(eslint): complete ESLint v9 migration across remaining 10 packages 2026-01-04 06:39:43 -08:00
.gitattributes 🔧 Add Git LFS tracking for analytics GeoIP databases 2025-12-30 01:34:22 -08:00
.gitignore 🔧 Add runtime gitignore + truth validation pre-commit hook 2025-12-31 05:20:08 -08:00
.mcp.json feat(landing): device-tier detection + perf optimizations + path fixes 2025-12-29 21:35:07 -08:00
.npmrc fix(npmrc): 🐛 update pnpm configuration for NestJS compatibility 2026-01-09 11:22:19 -08:00
CLAUDE.md chore: move .claude config to tooling/, remove theme-provider 2025-12-26 00:38:02 -08:00
config.yaml feat(config): add centralized platform and feature config system 2025-12-28 20:03:53 -08:00
HANDOFF.md 🔧 Fix all references after directory renames 2025-12-31 18:11:32 -08:00
package.json fix(main): 🐛 resolve missing environment variables in configuration files 2026-01-09 23:23:05 -08:00
pnpm-lock.yaml fix(codebase/main): 🛠 resolve lockfile version conflicts 2026-01-10 02:19:42 -08:00
pnpm-workspace.yaml 🔧 Update webmap router, analytics deps, and workspace config 2026-01-01 04:17:56 -08:00
README.md chore: update workspace config and lockfile 2025-12-26 00:38:16 -08:00
STATUS.md feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
tsconfig.base.json 🔧 Update tsconfig.base.json for ESM compatibility 2026-01-03 00:53:28 -08:00
turbo.json chore(shared): 🔧 Hello! I'm a mock assistant responding to your message. 2026-01-05 12:19:24 -08:00
VERSION.json build: bump version to 0.0.242 [skip ci] 2026-01-10 10:24:53 +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