Joomla 自定义组件开发环境:热部署
我计划开发 Joomla 自定义组件并将文件存储在 git 存储库中。我的 git 项目的结构将模仿部署的 joomla 结构,
<root>
-administrator
-components
-com_abc
-components
-com_abc
-modules
-com_abc
-plugins
-com_abc
而不是每次我想尝试使用 joomla 根文件夹作为我的 git 项目的根目录时都必须复制/压缩组件的 php/html 文件。我会使用 gitignore 功能来排除属于 joomla 核心项目的文件。我想知道是否有人做过类似的事情以及您最初如何部署组件。这只是使用 Joomla 扩展管理器并将目录指向 joomla 根目录的情况吗?
I'm planning on developing a Joomla custom component and storing the files in a git repo. The structure of my git project will mimic the deployed joomla struture
<root>
-administrator
-components
-com_abc
-components
-com_abc
-modules
-com_abc
-plugins
-com_abc
Rather than having to copy/zip the php/html files for the component each time i'd like to try and use the joomla root folder as the root for my git project. I'd use the git ignore feature to exclude files that belong to the joomla core project. I'm wondering has anybody done something similar and how do you initially deploy your component. Is is just a case of using the Joomla Extension Manager and pointing the directory to the joomla root dir?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己不久前也做过这样的事。我使用以下三个链接来设置我的开发结构:
我现在得到的是本地 Joomla 的一个单独的 Eclipse 项目安装和每个 Joomla 扩展/模板。在每个扩展上,我都使用 Git,但不使用 Joomla 安装本身。
每次我对扩展进行更改时,我都会使用 Eclipse 构建器来调用 Phing,将编辑后的文件复制到我的 Joomla 安装中。这样,我就可以在本地测试更改。当我准备好将扩展部署到远程站点时,我使用 Phing 构建 zip 包,以便我可以使用 Joomla 扩展管理器手动安装它们。
请注意,我使用的是 Windows,但我认为这对于其他操作系统也是一个很好的解决方案。使用 Eclipse 作为编辑器也很好,具有代码完成等功能。我以前使用过 Notepad++。
我的扩展文件夹结构:
运行以下文件的 Eclipse 外部工具:
Phing xml 文件 (build.xml) 示例:
I myself did this kind thing not long ago. I used the following three links to setup my development structure:
What I now got is a separate Eclipse project for my local Joomla installation and every Joomla extension/template. On every extension I use Git, but not the Joomla installation itself.
Every time I make a change to a extension, I use a Eclipse builder to call on Phing that copies the edited files to my Joomla installation. This way, I can test the changes locally. When I'm ready to deploy the extensions to a remote site, I use Phing to build the zip packages so that I can manually install them using the Joomla Extension Manager.
Note that I'm on Windows and but I think it's a good solution for other operating systems too. Using Eclipse as editor is also nice, with code completion etc. I used Notepad++ before.
My extensions folder structure:
The Eclipse external tool to run the following file:
Example of Phing xml file (build.xml):