项目管理平台-01-Phabricator 入门介绍 一套集成的强大工具,帮助公司构建更高质量的软件
拓展阅读
Devops-02-Jpom 简而轻的低侵入式在线构建、自动部署、日常运维、项目监控软件
项目管理平台-01-jira 入门介绍 缺陷跟踪管理系统,为针对缺陷管理、任务追踪和项目管理的商业性应用软件
项目管理平台-01-Phabricator 入门介绍 一套集成的强大工具,帮助公司构建更高质量的软件
test coverate-05-测试覆盖率 SonarQube 是一个综合性的代码质量管理平台,其中包含了对测试覆盖率的支持
Docker learn-29-docker 安装 sonarQube with mysql
Phabricator
Phabricator 是一套集成的强大工具,帮助公司构建更高质量的软件。
在 Mac 上安装
一、安装所需组件
- git
houbinbindeMacBook-Pro:~ houbinbin$ git --version
git version 2.8.1
- Apache
houbinbindeMacBook-Pro:~ houbinbin$ httpd -v
Server version: Apache/2.4.16 (Unix)
Server built: Jul 31 2015 15:53:26
- php
houbinbindeMacBook-Pro:~ houbinbin$ php -v
PHP 5.5.30 (cli) (built: Oct 23 2015 17:21:45)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2015 Zend Technologies
- MySQL
下载以下项目
$ git clone https://github.com/phacility/libphutil.git
$ git clone https://github.com/phacility/arcanist.git
$ git clone https://github.com/phacility/phabricator.git
然后
这个为实践路径。
houbinbindeMacBook-Pro:phabricator houbinbin$ pwd
/Users/houbinbin/IT/anybuy/phabricator
houbinbindeMacBook-Pro:phabricator houbinbin$ git clone https://github.com/phacility/libphutil.git
Cloning into 'libphutil'...
remote: Counting objects: 14006, done.
remote: Compressing objects: 100% (104/104), done.
二、配置 Apache
- 启动 & 重启
$ sudo apachectl -k start
$ sudo apachectl -k restart
- 浏览器
localhost
- 找到
httpd.conf
使用命令行和 vim 编辑或按:
command + shift + G
输入
/etc/
来找到 apache 目录。
错误:
Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
- 编辑 /etc/apache2/httpd.conf
去掉以下命令前的 #
:
LoadModule rewrite_module libexec/apache2/mod_rewrite.so
LoadModule php5_module libexec/apache2/libphp5.so
Include /private/etc/apache2/extra/httpd-vhosts.conf
- 编辑 /etc/apache2/extra/httpd-vhosts.conf
如下所示:
# 虚拟主机
#
# 必需的模块: mod_log_config
# 如果您想在您的机器上维护多个域名/主机名,
# 您可以为它们设置虚拟主机容器。大多数配置
# 仅使用基于名称的虚拟主机,所以服务器不需要担心
# IP 地址。这由下面指令中的星号表示。
#
# 在尝试设置虚拟主机之前,请查看
# <URL:http://httpd.apache.org/docs/2.4/vhosts/>
# 获取更多详细信息。
#
# 您可以使用命令行选项 '-S' 来验证您的虚拟主机
# 配置。
#
# 虚拟主机示例:
# 几乎所有的 Apache 指令都可以放在一个虚拟主机容器中。
# 第一个虚拟主机部分用于所有未匹配任何 ServerName 或 ServerAlias 的请求。
#
Listen 1234
<Directory "/Users/houbinbin/IT/anybuy/phabricator/phabricator/webroot">
Require all granted
</Directory>
<VirtualHost *:1234>
# 将此更改为指向您的主机的域名。
ServerName www.anybuy.com
# 将此更改为从 GitHub 检出 'phabricator' 时所放置的路径
# 注意确保最后包括 "/webroot"!
DocumentRoot /Users/houbinbin/IT/anybuy/phabricator/phabricator/webroot
RewriteEngine on
RewriteRule ^/rsrc/(.*) - [L,QSA]
RewriteRule ^/favicon.ico - [L,QSA]
RewriteRule ^(.*)$ /index.php?__path__=$1 [B,L,QSA]
</VirtualHost>
注意:
- Listen 1234 指定端口号为 1234
- ServerName
www.anybuy.com
后者为项目域名,本地可使用127.0.0.1
/Users/houbinbin/IT/anybuy/phabricator/phabricator/webroot
2处路径请替换成自己的实际路径。
- 重启 Apache,然后您将看到首页
配置 mysql
这段代码是用来配置 Phabricator 连接到 MySQL 数据库的信息。其中包括主机名、端口号、用户名和密码。
接着,它要求你运行存储升级脚本以设置 Phabricator 的数据库模式。
/Users/houbinbin/IT/anybuy/phabricator/phabricator/bin/storage upgrade
运行这个命令后,可能会看到类似以下的日志输出:
Before running storage upgrades, you should take down the Phabricator web
interface and stop any running Phabricator daemons (you can disable this
warning with --force).
Are you ready to continue? [y/N] y
Loading quickstart template...
Applying patch 'phabricator:db.packages'...
Applying patch 'phabricator:20160201.revision.properties.1.sql'...
Applying patch 'phabricator:20160201.revision.properties.2.sql'...
Applying patch 'phabricator:20160706.phame.blog.parentdomain.2.sql'...
Applying patch 'phabricator:20160706.phame.blog.parentsite.1.sql'...
Applying patch 'phabricator:20160707.calendar.01.stub.sql'...
Applying patch 'phabricator:20160711.files.01.builtin.sql'...
Applying patch 'phabricator:20160711.files.02.builtinkey.sql'...
Applying patch 'phabricator:20160713.event.01.host.sql'...
Applying patch 'phabricator:20160715.event.01.alldayfrom.sql'...
Applying patch 'phabricator:20160715.event.02.alldayto.sql'...
Applying patch 'phabricator:20160715.event.03.allday.php'...
Applying patch 'phabricator:20160720.calendar.invitetxn.php'...
Restructuring calendar invite transactions...
Done.
Applying patch 'phabricator:20160721.pack.01.pub.sql'...
Applying patch 'phabricator:20160721.pack.02.pubxaction.sql'...
Applying patch 'phabricator:20160721.pack.03.edge.sql'...
Applying patch 'phabricator:20160721.pack.04.pkg.sql'...
Applying patch 'phabricator:20160721.pack.05.pkgxaction.sql'...
Applying patch 'phabricator:20160721.pack.06.version.sql'...
Applying patch 'phabricator:20160721.pack.07.versionxaction.sql'...
Applying patch 'phabricator:20160722.pack.01.pubngrams.sql'...
Applying patch 'phabricator:20160722.pack.02.pkgngrams.sql'...
Applying patch 'phabricator:20160722.pack.03.versionngrams.sql'...
Applying patch 'phabricator:20160810.commit.01.summarylength.sql'...
Applying patch 'phabricator:20160824.connectionlog.sql'...
Applying patch 'phabricator:20160824.repohint.01.hint.sql'...
Applying patch 'phabricator:20160824.repohint.02.movebad.php'...
Applying patch 'phabricator:20160824.repohint.03.nukebad.sql'...
Applying patch 'phabricator:20160825.ponder.sql'...
Applying patch 'phabricator:20160829.pastebin.01.language.sql'...
Applying patch 'phabricator:20160829.pastebin.02.language.sql'...
Applying patch 'phabricator:20160913.conpherence.topic.1.sql'...
Applying patch 'phabricator:20160919.repo.messagecount.sql'...
Applying patch 'phabricator:20160919.repo.messagedefault.sql'...
Storage is up to date. Use 'storage status' for details.
Verifying database schemata...
Database Table Name Issues
phabricator_calendar calendar_event userPHID_dateFrom Surplus Key
phabricator_calendar calendar_event key_date Missing Key
phabricator_file file_transaction_comment key_draft Surplus Key
phabricator_harbormaster harbormaster_build key_initiator Missing Key
phabricator_herald herald_rule name Better Collation Available
phabricator_herald herald_rule key_name Missing Key
phabricator_packages packages_package name Better Collation Available
phabricator_packages packages_publisher name Better Collation Available
phabricator_search search_document key_type Missing Key
phabricator_worker worker_archivetask key_modified Missing Key
Applying schema adjustments...
Done.
Completed applying all schema adjustments.
访问 Phabricator
浏览器打开页面 http://127.0.0.1:1234/
转载自:https://juejin.cn/post/7348832432073031718