Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install Phabricator on windows?

I tried to install Phabricator on windows 8 with WAMP Apache Server.

As per the below link I installed Arcanist and confirmed with the comment

arc -v 

https://secure.phabricator.com/book/phabricator/article/arcanist_windows/

Next I try to access the Phabricator page on my localhost, I can see only the .sh for Linux, Nothing for windows. Please guide me if you installed successfully on windows.

http://localhost/phabricator/scripts/install/
like image 429
Muthamizhchelvan. V Avatar asked Mar 15 '14 05:03

Muthamizhchelvan. V


People also ask

How do I set up arcanist?

Using git (recommended)EditChose an installation location (for example ~/apps or /opt ) and clone the arcanist repository there. Now add ~/apps/arcanist/bin/arc to your PATH (variable). The easiest way to do so on Unix is to add a symlink in a directory already in your PATH, pointing to the arc binary.

What is Arcconfig?

An . arcconfig file is a JSON file which you check into your project's root. Arcanist uses .arcconfig files to customize a number of things about its behavior.


1 Answers

Use below steps to setup phabricator/arc cli on windows box.

  1. Download & Install Git Bash.

  2. It needs PHP, if you don't have PHP installed on machine then you use XAMP or WAMP. Find the installation directory for PHP and set system path for that.

  3. Open command prompt and test the php installation by writing php command. If it does not show any error then you can skip step-4.

  4. In case of MSVCR100.dll missing error. download the exe file from here: http://www.microsoft.com/en-in/download/details.aspx?id=30679 and install it.Once again test php installation.

Use Git Bash to do following:

  1. Clone below repos somewhere:

    git clone https://github.com/phacility/libphutil.git

    git clone https://github.com/phacility/arcanist.git

  2. Again update system path similar to step 3 and add there : <path>\arcanist\bin

  3. Test arc help command in Git Bash.

  4. Install Phabricator server certificate using arc install-certificate command.

  5. Add an editor by following https://secure.phabricator.com/book/phabricator/article/arcanist_windows/

like image 56
Priyanshu Shekhar Avatar answered Oct 29 '22 03:10

Priyanshu Shekhar