📅  最后修改于: 2023-12-03 14:53:34.116000             🧑  作者: Mango
Strapi 是一个开源的 Headless CMS (无 Head 部分的内容管理系统),用于构建 API-first 应用程序。在本文中,我们将介绍如何使用 Shell-Bash 安装 Strapi。
在开始安装之前,请确保您的环境已经安装了 Node.js 和 npm。
npm install strapi@latest -g
strapi new my-project
这将创建一个名为 my-project
的新项目。
Strapi 支持多种数据库,包括 MongoDB、PostgreSQL、MySQL、SQLite 和 MariaDB。在创建项目时,您将被要求选择数据库。例如,要使用 MongoDB:
? Choose your installation type: Quickstart
? Choose your default database client: MongoDB
? Database name: my-project
? Host: 127.0.0.1
? Port: 27017
? Username:
? Password:
? Enable SSL connection: No
cd my-project
strapi start
现在,您可以在 http://localhost:1337
上访问 Strapi 的管理面板。
在本文中,我们介绍了如何使用 Shell-Bash 安装 Strapi。请记住,Strapi 是一个强大的工具,可以用于构建 API-first 应用程序。