# lowcode **Repository Path**: Ghost6-6/lowcode ## Basic Information - **Project Name**: lowcode - **Description**: 这是一个关于低代码平台可视化的项目 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-30 - **Last Updated**: 2025-09-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Monorepo Project This is a monorepo project managed with pnpm workspaces. ## Structure - `packages/apps`: Contains applications. - `packages/libs`: Contains shared libraries. ## Getting Started 1. Install dependencies: ```bash pnpm install ``` 2. Run an application: ```bash pnpm --filter dev ``` For example, to run the `web` app: ```bash pnpm --filter web dev ``` ## 提交规范 本项目使用严格的Git提交规范,以保持清晰的项目历史和自动化版本管理。 ### 提交步骤 1. 使用辅助工具创建规范的提交: ```bash npm run commit ``` 2. 按照交互式提示完成提交信息的填写 ### 提交规范详情 详细的提交规范,请查看 [COMMIT_CONVENTION.md](./COMMIT_CONVENTION.md) ### 自动验证 项目已配置自动验证机制,不符合规范的提交将被拒绝。 ### 性能优化 为了保持较快的提交速度,我们实施了一系列性能优化措施。详情请查看 [Git 性能优化指南](./GIT_PERFORMANCE.md)。 ## Containerized Deployment (Docker) This project is configured for containerized deployment using Docker. ### Prerequisites - [Docker](https://www.docker.com/get-started) installed on your machine. ### Building and Running with Docker Compose To build the container image and run the application, execute the following command from the project root: ```bash docker-compose up --build ``` The application will be accessible at [http://localhost:8080](http://localhost:8080). To stop the application, press `Ctrl+C` in the terminal where Docker Compose is running, or run: ```bash docker-compose down ```