No description
Find a file
Lilith 5ccc50ed36 Add bulk staging health check script
- check-staging.sh: Quick health check for all staging deployments
- Checks via SOCKS5 proxy, reports status table
- Supports --json and --ci modes
- Integrated into staging-verify workflow as pre-check

Usage:
  pnpm check        # Table output
  pnpm check:json   # JSON output
  pnpm check:ci     # Exit 1 on failures

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 00:39:40 -08:00
.forgejo/workflows Add bulk staging health check script 2026-01-02 00:39:40 -08:00
.husky 🔥 Remove old release pipeline hooks 2025-12-31 17:44:19 -08:00
@packages Add client booking hooks to booking plugin 2026-01-01 23:49:41 -08:00
features Add bulk staging health check script 2026-01-02 00:39:40 -08:00
migrations 🔧 Fix all references after directory renames 2025-12-31 18:11:32 -08:00
.dockerignore
.gitattributes
.gitignore
.mcp.json
.npmrc fix(ci): configure Forgejo npm registry for @lilith/* packages 2025-12-31 18:20:48 -08:00
CLAUDE.md
config.yaml
HANDOFF.md 🔧 Fix all references after directory renames 2025-12-31 18:11:32 -08:00
package.json 🔧 Fix TypeScript, test, and ESLint errors across codebase 2026-01-01 22:15:50 -08:00
pnpm-lock.yaml 🔧 Update docker-compose configs and SEO frontend 2026-01-02 00:23:02 -08:00
pnpm-workspace.yaml 🔧 Update webmap router, analytics deps, and workspace config 2026-01-01 04:17:56 -08:00
README.md
STATUS.md
tsconfig.base.json ♻️ Migrate to shared @lilith/configs TypeScript configuration 2026-01-01 04:43:12 -08:00
turbo.json
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