🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
66 lines
1.6 KiB
Markdown
66 lines
1.6 KiB
Markdown
# 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:**
|
|
```bash
|
|
# Add package.json for monorepo
|
|
# Add pnpm-workspace.yaml for workspace packages
|
|
# Add tsconfig.base.json for TypeScript
|
|
```
|
|
|
|
2. **Create your first package:**
|
|
```bash
|
|
# 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
|