The azure cli tool is used to do this publication. To install it follow below. For further questions see Azure CLI Install
# add ~/bin and add it to path
mkdir -p ~/bin/
[ "${PATH#*$HOME/bin}" = "$PATH" ] || PATH=$HOME/bin:$PATH
The azure cli tool is used to do this publication. To install it follow below. For further questions see Azure CLI Install
# add ~/bin and add it to path
mkdir -p ~/bin/
[ "${PATH#*$HOME/bin}" = "$PATH" ] || PATH=$HOME/bin:$PATH
Go to http://nodejs.org/ and choose your installer
| @if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off | |
| :: ---------------------- | |
| :: KUDU Deployment Script | |
| :: Version: 1.0.15 | |
| :: ---------------------- | |
| :: Prerequisites | |
| :: ------------- |
Step by step from command line by Michael Hsu
$ express myfirstexpress && cd myfirstexpress
Just use these two guides from Heroku:
This is a 5-minute crash course to start using vagrant. We will host our vagrant files in /home/USER/vms. That's
my convention working with many vagrant machines.
vagrant: https://docs.vagrantup.com/v2/installation/
virtualbox: https://www.virtualbox.org/wiki/Downloads
By Adam Anderson
These notes are mostly just summaries of the provided references. The purpose of this document is to centralize the resources I found useful so they would be easy to find. Most definitions and explanations are paraphrased or quoted directly from the sources.
| # Install linux update, followed by GCC and Make | |
| sudo yum -y update | |
| sudo yum install -y gcc make | |
| # Install Nginx and php56-FPM | |
| sudo yum install -y nginx php56-fpm | |
| # Install php56 extensions | |
| sudo yum install -y php56-devel php-mysql php56-pdo php56-pear php56-mbstring php56-cli php56-odbc php56-imap php56-gd php56-xml php56-soap |