From dc384ca4a49c950209934b8b5121f0e11175e71f Mon Sep 17 00:00:00 2001 From: Kfir Strikovsky Date: Wed, 7 Jan 2026 15:18:40 +0200 Subject: [PATCH] remove project sturcutre from readme --- README.md | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/README.md b/README.md index 3f073131..b6ba88aa 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ npm run clean # Lint the code npm run lint + ``` ## Commands @@ -46,31 +47,3 @@ npm run lint ### Project - `base44 show-project` - Display project configuration, entities, and functions - -## Project Structure - -``` -cli/ -├── src/ -│ ├── core/ # Core module (shared code) -│ │ ├── api/ # API client code -│ │ ├── config/ # Configuration management -│ │ ├── errors/ # Custom error classes -│ │ ├── schemas/ # Zod schemas -│ │ ├── utils/ # Utility functions -│ │ └── index.ts # Core module exports -│ └── cli/ # CLI module (main CLI) -│ ├── commands/ # Command implementations -│ │ ├── auth/ # Authentication commands -│ │ └── project/ # Project commands -│ ├── utils/ # CLI-specific utilities -│ └── index.ts # Main CLI entry point -├── dist/ # Build output (compiled JavaScript) -├── package.json # Package configuration -├── tsconfig.json # TypeScript configuration -└── README.md -``` - -## License - -ISC