在ubuntu安装Phabricator(转)

前言:

Phabricator是facebook团队进行codereview的一个工具,是基于php进行开发的。界面简洁优雅,是团队做代码评审的好帮手。个人认为,是当前最好的code review平台。官网地址http://phabricator.org/

1 查看服务器版本

stnts@ubuntu:~$ uname -a
Linux ubuntu 3.19.0-25-generic #26~14.04.1-Ubuntu SMP Fri Jul 24 21:16:20 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
2 创建目录
mkdir review
3 安装GIT服务
root@ubuntu:~/review# apt-get install git
4 下载最新的源码
root@ubuntu:~/review# git clone https://github.com/phacility/phabricator.git
5进入安装目录,执行脚本
root@ubuntu:~/review/phabricator# cd scripts/install/
root@ubuntu:~/review/phabricator/scripts/install# ./install_ubuntu.sh
中间会有若干提示,确认Y就OK。另外在设置MYSQL的ROOT用户的密码
9设置邮件发送

10 后台服务启动 daemons主是是后台服务的线程支持,如EMAIL发送 ./bin/phd startapache2重启service apache2 restart

http://www.blogjava.net/zuxiong/archive/2015/11/19/428268.html

原文地址:https://www.cnblogs.com/softidea/p/5352924.html