No description
Find a file
Lilith d4e6501bbb chore: migrate npm registry from GitLab to Forgejo
Updated .npmrc files to use self-hosted Forgejo package registry:
- Changed scope from @transquinnftw to @lilith
- Updated registry URL to forge.nasty.sh
- Updated auth token variable from GITLAB_NPM_TOKEN to FORGEJO_NPM_TOKEN

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 18:05:28 -08:00
.husky 🔧 Update project configuration 2025-12-30 01:37:06 -08:00
@packages chore: migrate npm registry from GitLab to Forgejo 2025-12-30 18:05:28 -08:00
features feat(conversation-assistant): add contacts count to webapp stats display 2025-12-30 16:01:43 -08:00
migrations fix(conversation-assistant): chunked sync and remove body size limits 2025-12-30 03:54:50 -08:00
.dockerignore 🔧 Update project configuration 2025-12-30 01:37:06 -08:00
.gitattributes 🔧 Add Git LFS tracking for analytics GeoIP databases 2025-12-30 01:34:22 -08:00
.gitignore chore: add .playwright-mcp/ to gitignore 2025-12-28 16:12:18 -08:00
.gitlab-ci.yml feat(landing): device-tier detection + perf optimizations + path fixes 2025-12-29 21:35:07 -08:00
.mcp.json feat(landing): device-tier detection + perf optimizations + path fixes 2025-12-29 21:35:07 -08:00
.npmrc chore: migrate npm registry from GitLab to Forgejo 2025-12-30 18:05:28 -08:00
CLAUDE.md
config.yaml feat(config): add centralized platform and feature config system 2025-12-28 20:03:53 -08:00
HANDOFF.md 📝 Update HANDOFF.md 2025-12-30 01:37:11 -08:00
package.json 🔧 Update root package.json, pnpm-lock.yaml, and tsconfig.base.json 2025-12-30 04:51:26 -08:00
pnpm-lock.yaml 🔧 Update root package.json, pnpm-lock.yaml, and tsconfig.base.json 2025-12-30 04:51:26 -08:00
pnpm-workspace.yaml 🔧 Update project configuration 2025-12-30 01:37:06 -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 root package.json, pnpm-lock.yaml, and tsconfig.base.json 2025-12-30 04:51:26 -08:00
turbo.json
VERSION.json build: bump version to 0.0.34 2025-12-30 04:43:21 -08: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