chore: archive inactive projects to apps-archived/
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
66
CLAUDE.md
|
|
@ -12,18 +12,29 @@ This is a pnpm workspace monorepo containing multiple product applications with
|
||||||
|
|
||||||
## Projects
|
## Projects
|
||||||
|
|
||||||
| Project | Description | Apps |
|
| Project | Description | Apps |
|
||||||
| ------------------ | -------------------------------- | --------------------------------------------------------- |
|
| ------------ | ---------------------------- | --------------------------------------------------------- |
|
||||||
| **maerchenzauber** | AI story generation | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
|
| **manacore** | Multi-app ecosystem platform | Expo mobile, SvelteKit web |
|
||||||
| **manacore** | Multi-app ecosystem platform | Expo mobile, SvelteKit web |
|
| **manadeck** | Card/deck management | NestJS backend, Expo mobile, SvelteKit web |
|
||||||
| **manadeck** | Card/deck management | NestJS backend, Expo mobile, SvelteKit web |
|
| **picture** | AI image generation | Expo mobile, SvelteKit web, Astro landing |
|
||||||
| **memoro** | Voice memo & AI analysis | Expo mobile, SvelteKit web, Astro landing |
|
| **chat** | AI chat application | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
|
||||||
| **picture** | AI image generation | Expo mobile, SvelteKit web, Astro landing |
|
| **zitare** | Daily inspiration quotes | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
|
||||||
| **uload** | URL shortener | SvelteKit web, PocketBase/Drizzle |
|
| **presi** | Presentation tool | NestJS backend, Expo mobile, SvelteKit web |
|
||||||
| **chat** | AI chat application | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
|
|
||||||
| **wisekeep** | AI wisdom extraction from video | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
|
### Archived Projects (`apps-archived/`)
|
||||||
| **zitare** | Daily inspiration quotes | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
|
|
||||||
| **bauntown** | Community website for developers | Astro landing |
|
These projects are temporarily archived and excluded from the workspace. To re-activate, move back to `apps/`.
|
||||||
|
|
||||||
|
| Project | Description |
|
||||||
|
| ------------------ | -------------------------------- |
|
||||||
|
| **bauntown** | Community website for developers |
|
||||||
|
| **maerchenzauber** | AI story generation |
|
||||||
|
| **memoro** | Voice memo & AI analysis |
|
||||||
|
| **news** | News aggregation |
|
||||||
|
| **nutriphi** | Nutrition tracking |
|
||||||
|
| **reader** | Reading app |
|
||||||
|
| **uload** | URL shortener |
|
||||||
|
| **wisekeep** | AI wisdom extraction from video |
|
||||||
|
|
||||||
## Development Commands
|
## Development Commands
|
||||||
|
|
||||||
|
|
@ -32,18 +43,17 @@ This is a pnpm workspace monorepo containing multiple product applications with
|
||||||
pnpm install
|
pnpm install
|
||||||
|
|
||||||
# Start specific project (runs all apps in project)
|
# Start specific project (runs all apps in project)
|
||||||
pnpm run maerchenzauber:dev
|
pnpm run manacore:dev
|
||||||
pnpm run memoro:dev
|
pnpm run manadeck:dev
|
||||||
pnpm run picture:dev
|
pnpm run picture:dev
|
||||||
pnpm run chat:dev
|
pnpm run chat:dev
|
||||||
pnpm run wisekeep:dev
|
|
||||||
pnpm run zitare:dev
|
pnpm run zitare:dev
|
||||||
pnpm run bauntown:dev
|
pnpm run presi:dev
|
||||||
|
|
||||||
# Start specific app within project
|
# Start specific app within project
|
||||||
pnpm run dev:memoro:mobile # Just mobile app
|
pnpm run dev:chat:mobile # Just mobile app
|
||||||
pnpm run dev:chat:backend # Just NestJS backend
|
pnpm run dev:chat:backend # Just NestJS backend
|
||||||
pnpm run dev:maerchenzauber:app # Web + backend together
|
pnpm run dev:chat:app # Web + backend together
|
||||||
|
|
||||||
# Build & quality
|
# Build & quality
|
||||||
pnpm run build
|
pnpm run build
|
||||||
|
|
@ -59,7 +69,7 @@ Each project has its own `CLAUDE.md` with detailed project-specific commands.
|
||||||
|
|
||||||
```
|
```
|
||||||
manacore-monorepo/
|
manacore-monorepo/
|
||||||
├── apps/ # SaaS product applications
|
├── apps/ # Active SaaS product applications
|
||||||
│ ├── chat/
|
│ ├── chat/
|
||||||
│ │ ├── apps/
|
│ │ ├── apps/
|
||||||
│ │ │ ├── backend/ # NestJS API
|
│ │ │ ├── backend/ # NestJS API
|
||||||
|
|
@ -67,9 +77,18 @@ manacore-monorepo/
|
||||||
│ │ │ ├── web/ # SvelteKit web app
|
│ │ │ ├── web/ # SvelteKit web app
|
||||||
│ │ │ └── landing/ # Astro marketing page
|
│ │ │ └── landing/ # Astro marketing page
|
||||||
│ │ └── packages/ # Project-specific shared code
|
│ │ └── packages/ # Project-specific shared code
|
||||||
│ ├── maerchenzauber/
|
|
||||||
│ ├── manadeck/
|
│ ├── manadeck/
|
||||||
|
│ ├── picture/
|
||||||
│ └── ...
|
│ └── ...
|
||||||
|
├── apps-archived/ # Archived apps (excluded from workspace)
|
||||||
|
│ ├── bauntown/
|
||||||
|
│ ├── maerchenzauber/
|
||||||
|
│ ├── memoro/
|
||||||
|
│ ├── news/
|
||||||
|
│ ├── nutriphi/
|
||||||
|
│ ├── reader/
|
||||||
|
│ ├── uload/
|
||||||
|
│ └── wisekeep/
|
||||||
├── games/ # Game projects
|
├── games/ # Game projects
|
||||||
│ └── {game-name}/ # Individual games
|
│ └── {game-name}/ # Individual games
|
||||||
├── services/ # Standalone microservices
|
├── services/ # Standalone microservices
|
||||||
|
|
@ -248,11 +267,10 @@ PORT=...
|
||||||
|
|
||||||
Each project has its own `CLAUDE.md` with detailed information:
|
Each project has its own `CLAUDE.md` with detailed information:
|
||||||
|
|
||||||
- `apps/maerchenzauber/CLAUDE.md` - Story generation specifics, AI services
|
|
||||||
- `apps/manacore/CLAUDE.md` - Multi-app ecosystem, auth details
|
- `apps/manacore/CLAUDE.md` - Multi-app ecosystem, auth details
|
||||||
- `apps/memoro/CLAUDE.md` - Audio recording, AI processing
|
- `apps/manadeck/CLAUDE.md` - Card/deck management
|
||||||
- `apps/uload/CLAUDE.md` - URL shortener, Drizzle ORM
|
|
||||||
- `apps/chat/CLAUDE.md` - Chat API endpoints, AI models
|
- `apps/chat/CLAUDE.md` - Chat API endpoints, AI models
|
||||||
|
- `apps/picture/CLAUDE.md` - AI image generation
|
||||||
- `services/mana-core-auth/` - Central authentication service
|
- `services/mana-core-auth/` - Central authentication service
|
||||||
|
|
||||||
Navigate to the specific project directory to work on it.
|
Navigate to the specific project directory to work on it.
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 383 B |
|
Before Width: | Height: | Size: 616 KiB After Width: | Height: | Size: 616 KiB |
|
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 499 KiB |
|
Before Width: | Height: | Size: 304 KiB After Width: | Height: | Size: 304 KiB |
|
Before Width: | Height: | Size: 312 KiB After Width: | Height: | Size: 312 KiB |
|
Before Width: | Height: | Size: 906 KiB After Width: | Height: | Size: 906 KiB |
|
Before Width: | Height: | Size: 160 KiB After Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 108 KiB |
|
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 134 KiB |
|
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 152 KiB |
|
Before Width: | Height: | Size: 312 KiB After Width: | Height: | Size: 312 KiB |
|
Before Width: | Height: | Size: 194 KiB After Width: | Height: | Size: 194 KiB |
|
Before Width: | Height: | Size: 314 KiB After Width: | Height: | Size: 314 KiB |
|
Before Width: | Height: | Size: 360 KiB After Width: | Height: | Size: 360 KiB |
|
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 111 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 475 KiB After Width: | Height: | Size: 475 KiB |
|
Before Width: | Height: | Size: 375 KiB After Width: | Height: | Size: 375 KiB |
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 473 KiB After Width: | Height: | Size: 473 KiB |
|
Before Width: | Height: | Size: 365 KiB After Width: | Height: | Size: 365 KiB |
|
Before Width: | Height: | Size: 428 KiB After Width: | Height: | Size: 428 KiB |
|
Before Width: | Height: | Size: 649 KiB After Width: | Height: | Size: 649 KiB |
|
Before Width: | Height: | Size: 453 KiB After Width: | Height: | Size: 453 KiB |
|
Before Width: | Height: | Size: 155 KiB After Width: | Height: | Size: 155 KiB |
|
Before Width: | Height: | Size: 609 KiB After Width: | Height: | Size: 609 KiB |
|
Before Width: | Height: | Size: 373 KiB After Width: | Height: | Size: 373 KiB |
|
Before Width: | Height: | Size: 458 KiB After Width: | Height: | Size: 458 KiB |
|
Before Width: | Height: | Size: 153 KiB After Width: | Height: | Size: 153 KiB |
|
Before Width: | Height: | Size: 286 KiB After Width: | Height: | Size: 286 KiB |
|
Before Width: | Height: | Size: 327 KiB After Width: | Height: | Size: 327 KiB |
|
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 471 KiB After Width: | Height: | Size: 471 KiB |
|
Before Width: | Height: | Size: 561 KiB After Width: | Height: | Size: 561 KiB |
|
Before Width: | Height: | Size: 333 KiB After Width: | Height: | Size: 333 KiB |
|
Before Width: | Height: | Size: 315 KiB After Width: | Height: | Size: 315 KiB |
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 91 KiB |
|
Before Width: | Height: | Size: 185 KiB After Width: | Height: | Size: 185 KiB |
|
Before Width: | Height: | Size: 297 KiB After Width: | Height: | Size: 297 KiB |
|
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 176 KiB After Width: | Height: | Size: 176 KiB |
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 224 KiB After Width: | Height: | Size: 224 KiB |
|
Before Width: | Height: | Size: 181 KiB After Width: | Height: | Size: 181 KiB |
|
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 150 KiB |
|
Before Width: | Height: | Size: 906 KiB After Width: | Height: | Size: 906 KiB |
|
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 499 KiB |
|
Before Width: | Height: | Size: 160 KiB After Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 383 B |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |