No description
Find a file
Quinn Ftw d8693f1e99 fix(i18n): restore both I18nProviders with correct config
The app uses two i18n systems:
1. @lilith/i18n (i18next) - for useTranslation, useAboutPageContent hooks
2. ./i18n (makeI18n factory) - for domain-specific useI18n hook

Both providers are needed:
- main.tsx: Generic I18nProvider with bundled resources
- App.tsx: Domain-specific I18nProvider with apiUrl for MSW

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 22:50:17 -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(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
features fix(i18n): restore both I18nProviders with correct config 2025-12-26 22:50:17 -08:00
infrastructure feat(deploy): add dynamic dependency detection for rectifier 2025-12-25 23:28:34 -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
HANDOFF.md feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
package.json feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
pnpm-lock.yaml feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -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
STATUS.md feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
tsconfig.base.json feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -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