No description
Find a file
Quinn Ftw 9bd0813bab feat(analytics-client): disable analytics in dev mode by default
Analytics was causing CORS errors in dev when no analytics server was
running. Now analytics is disabled by default in dev mode and enabled
in production. Can be overridden via VITE_ANALYTICS_ENABLED env var.

- Add `enabled` config option to AnalyticsConfig type
- AnalyticsClient no-ops all methods when disabled
- Dev: disabled by default, enable with VITE_ANALYTICS_ENABLED=true
- Prod: enabled by default, disable with VITE_ANALYTICS_ENABLED=false

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 10:10:48 -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(analytics-client): disable analytics in dev mode by default 2025-12-26 10:10:48 -08:00
features feat(analytics-client): disable analytics in dev mode by default 2025-12-26 10:10:48 -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
package.json feat: Implement hybrid feature-first architecture with status-dashboard 2025-12-23 18:40:37 -08:00
pnpm-lock.yaml fix: Update better-sqlite3 to ^11.0.0 for Node.js 24 compatibility 2025-12-24 21:54:44 -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
tsconfig.base.json chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -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