mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:41:09 +02:00
chore: add games folder structure to monorepo
- Create /games directory for game projects - Update pnpm-workspace.yaml with games paths - Update CLAUDE.md documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
7abfc4c0b3
commit
4f7052b0ca
3 changed files with 12 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ Each project has its own `CLAUDE.md` with detailed project-specific commands.
|
|||
### Monorepo Structure
|
||||
```
|
||||
manacore-monorepo/
|
||||
├── apps/ # All product applications
|
||||
├── apps/ # SaaS product applications
|
||||
│ ├── chat/
|
||||
│ │ ├── apps/
|
||||
│ │ │ ├── backend/ # NestJS API
|
||||
|
|
@ -67,6 +67,8 @@ manacore-monorepo/
|
|||
│ ├── maerchenzauber/
|
||||
│ ├── manadeck/
|
||||
│ └── ...
|
||||
├── games/ # Game projects
|
||||
│ └── {game-name}/ # Individual games
|
||||
├── services/ # Standalone microservices
|
||||
│ └── mana-core-auth/ # Central authentication service
|
||||
├── packages/ # Monorepo-wide shared packages
|
||||
|
|
|
|||
0
games/.gitkeep
Normal file
0
games/.gitkeep
Normal file
|
|
@ -8,6 +8,15 @@ packages:
|
|||
# Product-specific packages
|
||||
- 'apps/*/packages/*'
|
||||
|
||||
# Games
|
||||
- 'games/*'
|
||||
|
||||
# Sub-apps within games (if needed)
|
||||
- 'games/*/apps/*'
|
||||
|
||||
# Game-specific packages
|
||||
- 'games/*/packages/*'
|
||||
|
||||
# Standalone microservices
|
||||
- 'services/*'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue