From 6a62a0fe163687adfb57ae7c696ab31c0755c213 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 28 Nov 2025 05:34:17 +0000 Subject: [PATCH] docs: Correct project structure in README The project structure diagram in the README.md incorrectly showed the main application under 'packages/core'. This has been corrected to 'apps/core' to accurately reflect the monorepo structure. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b2e130..6f62d53 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ bun run clean # Clean build artifacts ``` asset-forge/ -├── packages/ +├── apps/ │ └── core/ # Main application │ ├── src/ # React frontend │ │ ├── components/ # UI components @@ -115,6 +115,7 @@ asset-forge/ │ ├── public/ # Static assets │ ├── scripts/ # Utility scripts │ └── dev-book/ # Documentation +├── packages/ # Shared packages ├── package.json # Workspace root ├── turbo.json # Build config └── README.md # This file