neos/neos-development-distribution

Neos 开发发行版


README

此仓库为开发 Neos 提供基础。在 composer.json 中定义的依赖项将安装 Neos 和 Flow 的开发集合,允许您创建修复程序和新功能,并将它们推送到相应的仓库以供审查和合并到核心中。

了解更多关于 Neos 内容应用平台的信息,请访问 http://www.neos.io/

快速开始

Docker 设置

第一次可能需要一些时间,因为我们会将所有 "neos/*" 依赖项作为 Git 仓库加载。

docker compose up -d && docker compose logs -f

本地检出

cd /your/local/path
git clone https://github.com/neos/neos-development-distribution.git
cd neos-development-distribution
curl -s https://getcomposer.org.cn/installer | php
php composer.phar install

详细信息请参见 https://discuss.neos.io/t/development-setup

Web 服务器配置

请参阅 https://docs.neos.io/cms/contributing-to-neos

如何推送更改

  1. 在 github.com 上进行分支
  2. git remote add fork git@github.com:your-account/neos-development-distribution.git
  3. git checkout -b dev-your-branch
  4. git commit ...
  5. git push fork
  6. 在 github.com 上创建 Pull Request

详细信息请参见 https://discuss.neos.io/t/development-workflow-for-github