# strapi-cms **Repository Path**: lekane-design/strapi-cms ## Basic Information - **Project Name**: strapi-cms - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-25 - **Last Updated**: 2026-01-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🚀 Getting started with Strapi Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/dev-docs/cli) (CLI) which lets you scaffold and manage your project in seconds. ### `develop` Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-develop) ``` npm run develop # or yarn develop ``` ### `start` Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-start) ``` npm run start # or yarn start ``` ### `build` Build your admin panel. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-build) ``` npm run build # or yarn build ``` ## ⚙️ Deployment Strapi gives you many possible deployment options for your project including [Strapi Cloud](https://cloud.strapi.io). Browse the [deployment section of the documentation](https://docs.strapi.io/dev-docs/deployment) to find the best solution for your use case. ``` yarn strapi deploy ``` ## 📚 Learn more - [Resource center](https://strapi.io/resource-center) - Strapi resource center. - [Strapi documentation](https://docs.strapi.io) - Official Strapi documentation. - [Strapi tutorials](https://strapi.io/tutorials) - List of tutorials made by the core team and the community. - [Strapi blog](https://strapi.io/blog) - Official Strapi blog containing articles made by the Strapi team and the community. - [Changelog](https://strapi.io/changelog) - Find out about the Strapi product updates, new features and general improvements. Feel free to check out the [Strapi GitHub repository](https://github.com/strapi/strapi). Your feedback and contributions are welcome! ## ✨ 部署 ### 1.运行命令生成类型定义 > 预防本地缺少类型定义导致无法打包镜像 ```bash yarn strapi ts:generate-types ``` ### 2.生成镜像&启动容器 > 当项目依赖变化时也需要重新构建镜像 ```bash docker compose up -d --build ```