The Azure Resource Manager template is for deploying
- New Web App instance of PHP 7.0 under Free plan
- Then install the site extension Composer to the Web App
/* | |
* EXAMPLE USAGE | |
* This component is text that will bounce on mount and | |
* every time `this.props.someProperty` changes. | |
* Too bad react native doesn't support decorators yet :/ | |
*/ | |
import React, { | |
Component, | |
StyleSheet, |
version: '2' | |
services: | |
myapp: | |
build: . | |
container_name: "myapp" | |
image: debian/latest | |
environment: | |
- NODE_ENV=development | |
- FOO=bar | |
volumes: |
Param( | |
[parameter(Mandatory=$false,ValueFromPipeline=$true)][string]$content="", | |
[parameter(Mandatory=$false)][string]$inputFile="", | |
[parameter(Mandatory=$false)][string]$outputFile="", | |
[parameter(Mandatory=$true)][hashtable]$tokens | |
) | |
if ([string]::IsNullOrEmpty($content)) { | |
if ([string]::IsNullOrEmpty($inputFile)) { |
trigger: | |
- none | |
pool: | |
vmImage: 'ubuntu-latest' | |
variables: | |
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn | |
GRADLE_USER_HOME: $(Pipeline.Workspace)/.gradle |