This is a supplement to the official Phabricator Installation Guide, because their guide will leave you with all kinds of permission and config errors and ~15,000 setup issues on startup.
Till 2018 August, requires ubuntu 16+.
| #install libnfc | |
| brew install libtool | |
| brew install automake | |
| brew install autoconf | |
| brew install libusb | |
| brew install pkg-config | |
| brew install glib | |
This is a supplement to the official Phabricator Installation Guide, because their guide will leave you with all kinds of permission and config errors and ~15,000 setup issues on startup.
Till 2018 August, requires ubuntu 16+.
| server { | |
| listen 80; | |
| server_name localhost; | |
| root /home/pi/projects/MirrorMirror/public; | |
| index index.html index.htm index.php; | |
| charset utf-8; | |
| location / { |
| # Install Homebrew | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # Install python (& pip) | |
| brew install python; | |
| pip install virtualenv; | |
| #clone the repo | |
| cd ~; | |
| git clone git@github.com:Geniushjs/LintCode.git; | |
| cd LintCode; |
| #update package list | |
| sudo apt-get update | |
| # install git | |
| sudo apt-get install g++ curl libssl-dev apache2-utils make | |
| sudo apt-get install git-core | |
| # download the Node source, compile and install it | |
| git clone https://github.com/joyent/node.git | |
| cd node | |
| ./configure | |
| make |